Merge with stable
authorChristian Ebert <blacktrash@gmx.net>
Wed, 19 Sep 2012 00:59:23 +0100
changeset 1134 183d7e3d7ce8
parent 1132 13a3f6161af8 (current diff)
parent 1133 82f74372516e (diff)
child 1137 2d9daef1e473
Merge with stable
--- a/tests/hghave.py	Thu Sep 13 23:02:29 2012 +0100
+++ b/tests/hghave.py	Wed Sep 19 00:59:23 2012 +0100
@@ -118,6 +118,9 @@
     except OSError:
         return False
 
+def has_killdaemons():
+    return True
+
 def has_cacheable_fs():
     from mercurial import util
 
@@ -286,6 +289,7 @@
     "hardlink": (has_hardlink, "hardlinks"),
     "icasefs": (has_icasefs, "case insensitive file system"),
     "inotify": (has_inotify, "inotify extension support"),
+    "killdaemons": (has_killdaemons, 'killdaemons.py support'),
     "lsprof": (has_lsprof, "python lsprof module"),
     "mtn": (has_mtn, "monotone client (>= 1.0)"),
     "outer-repo": (has_outer_repo, "outer repo"),