changeset 5070 | 4cf6f8dbd1b4 |
parent 4881 | c51c9bc4579d |
child 5072 | 7e2385a31933 |
--- a/tests/hghave Mon Aug 06 09:57:23 2007 +0200 +++ b/tests/hghave Mon Aug 06 09:57:23 2007 +0200 @@ -9,8 +9,12 @@ def has_symlink(): return hasattr(os, "symlink") +def has_fifo(): + return hasattr(os, "mkfifo") + checks = { "symlink": (has_symlink, "symbolic links"), + "fifo": (has_fifo, "named pipes"), } def list_features():