tests/hghave
changeset 5102 9b0efeb725f4
parent 5099 105d4cf7ec24
child 5103 e5b21a549cc5
--- a/tests/hghave	Tue Aug 14 17:20:51 2007 +0200
+++ b/tests/hghave	Tue Aug 14 18:53:45 2007 +0200
@@ -35,6 +35,13 @@
     except:
         return False
 
+def has_hotshot():
+    try:
+        import hotshot
+        return True
+    except ImportError:
+        return False
+
 def has_lsprof():
     try:
         import _lsprof
@@ -46,6 +53,7 @@
     "eol-in-paths": (has_eol_in_paths, "end-of-lines in paths"),
     "execbit": (has_executablebit, "executable bit"),
     "fifo": (has_fifo, "named pipes"),
+    "hotshot": (has_hotshot, "python hotshot module"),
     "lsprof": (has_lsprof, "python lsprof module"),
     "symlink": (has_symlink, "symbolic links"),
 }