--- 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')