diff tests/hghave @ 15567:8b84d040d9f9

tests: introduce 'hghave msys' to skip tests that would fail because of msys
author Mads Kiilerich <mads@kiilerich.com>
date Mon, 21 Nov 2011 01:49:20 +0100
parents d09ea5bbc9a4
children 08635f4e44be
line wrap: on
line diff
--- a/tests/hghave	Wed Nov 23 16:35:17 2011 -0600
+++ b/tests/hghave	Mon Nov 21 01:49:20 2011 +0100
@@ -221,6 +221,9 @@
 def has_tic():
     return matchoutput('test -x "`which tic`"', '')
 
+def has_msys():
+    return os.getenv('MSYSTEM')
+
 checks = {
     "baz": (has_baz, "GNU Arch baz client"),
     "bzr": (has_bzr, "Canonical's Bazaar client"),
@@ -255,6 +258,7 @@
     "tla": (has_tla, "GNU Arch tla client"),
     "unix-permissions": (has_unix_permissions, "unix-style permissions"),
     "windows": (has_windows, "Windows"),
+    "msys": (has_msys, "Windows with MSYS"),
 }
 
 def list_features():