# HG changeset patch # User Mads Kiilerich # Date 2011-11-21 00:49:20 # Node ID 08635f4e44beeaab3133cefe6d742aa9324c0ede # Parent 8b84d040d9f9ce7736146989a063432d92928abc tests: skip cvs tests with msys on windows They will fail with weird 'ssh' errors. diff --git a/tests/hghave b/tests/hghave --- a/tests/hghave +++ b/tests/hghave @@ -45,7 +45,7 @@ def has_bzr114(): def has_cvs(): re = r'Concurrent Versions System.*?server' - return matchoutput('cvs --version 2>&1', re) + return matchoutput('cvs --version 2>&1', re) and not has_msys() def has_darcs(): return matchoutput('darcs --version', r'2\.[2-9]', True)