tests/hghave.py
changeset 31964 ebaada96aec3
parent 31683 1ed57a7dd904
child 32122 5bdceec6387d
child 32275 cf415777a22c
--- a/tests/hghave.py	Tue Apr 11 14:54:12 2017 -0700
+++ b/tests/hghave.py	Tue Apr 11 14:54:12 2017 -0700
@@ -634,3 +634,7 @@
         return True
     except ImportError:
         return False
+
+@check("devfull", "/dev/full special file")
+def has_dev_full():
+    return os.path.exists('/dev/full')