diff tests/hghave @ 5157:105d4cf7ec24

Test --time, --profile and --lsprof
author Patrick Mezard <pmezard@gmail.com>
date Tue, 14 Aug 2007 16:27:35 +0200
parents 6e040f6c2c9c
children 9b0efeb725f4
line wrap: on
line diff
--- a/tests/hghave
+++ b/tests/hghave
@@ -35,11 +35,19 @@ def has_eol_in_paths():
     except:
         return False
 
+def has_lsprof():
+    try:
+        import _lsprof
+        return True
+    except ImportError:
+        return False
+
 checks = {
-    "symlink": (has_symlink, "symbolic links"),
+    "eol-in-paths": (has_eol_in_paths, "end-of-lines in paths"),
+    "execbit": (has_executablebit, "executable bit"),
     "fifo": (has_fifo, "named pipes"),
-    "execbit": (has_executablebit, "executable bit"),
-    "eol-in-paths": (has_eol_in_paths, "end-of-lines in paths"),
+    "lsprof": (has_lsprof, "python lsprof module"),
+    "symlink": (has_symlink, "symbolic links"),
 }
 
 def list_features():