tests/hghave.py
changeset 17467 448d0c452140
parent 17016 468a950aebc3
child 17707 35674bd95200
--- a/tests/hghave.py	Mon Aug 20 22:36:51 2012 +0200
+++ b/tests/hghave.py	Sun Sep 09 12:31:14 2012 +0200
@@ -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"),