hghave: detect darcs client
authorPatrick Mezard <pmezard@gmail.com>
Sun, 07 Oct 2007 18:58:44 +0200
changeset 5410 2daecf3d2582
parent 5409 190c234c8fa0
child 5411 d5df426bd68a
hghave: detect darcs client
tests/hghave
--- a/tests/hghave	Sun Oct 07 18:58:36 2007 +0200
+++ b/tests/hghave	Sun Oct 07 18:58:44 2007 +0200
@@ -27,6 +27,9 @@
 def has_cvsps():
     return matchoutput('cvsps -h -q 2>&1', r'cvsps version', True)
 
+def has_darcs():
+    return matchoutput('darcs', 'darcs version', True)
+
 def has_eol_in_paths():
     try:
         fd, path = tempfile.mkstemp(prefix=tempprefix, suffix='\n\r')
@@ -85,6 +88,7 @@
 checks = {
     "cvs": (has_cvs, "cvs client"),
     "cvsps": (has_cvsps, "cvsps utility"),
+    "darcs": (has_darcs, "darcs client"),
     "eol-in-paths": (has_eol_in_paths, "end-of-lines in paths"),
     "execbit": (has_executablebit, "executable bit"),
     "fifo": (has_fifo, "named pipes"),