From e3108e6d2b71eb27fcad0e32a049a91313aa7c79 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sat, 22 Nov 2014 18:43:53 +0100 Subject: [PATCH] silence stderr correctly --- mysql-test/suite.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }