Print less scary message if the system supports symlinks:
authorThomas Arendsen Hein <thomas@intevation.de>
Sat, 11 Aug 2007 12:47:58 +0200
changeset 5092 6e040f6c2c9c
parent 5091 fc6106267198
child 5093 88803a69b24a
Print less scary message if the system supports symlinks: "Skipping test-no-symlinks: system supports symbolic links" instead of "Skipping test-no-symlinks: unexpected feature: symbolic links"
tests/hghave
--- a/tests/hghave	Sat Aug 11 12:36:04 2007 +0200
+++ b/tests/hghave	Sat Aug 11 12:47:58 2007 +0200
@@ -82,7 +82,7 @@
         if not negate and not check():
             error('hghave: missing feature: ' + desc)
         elif negate and check():
-            error('hghave: unexpected feature: ' + desc)
+            error('hghave: system supports %s' % desc)
 
     if failures != 0:
         sys.exit(1)