hghave: fix the check for suid on platforms lacking support stable
authorMatt Harbison <matt_harbison@yahoo.com>
Mon, 13 Dec 2021 00:18:31 -0500
branchstable
changeset 48441 f21e7748c257
parent 48440 cb477edeca79
child 48468 9dd151a39950
child 48493 50330d481640
hghave: fix the check for suid on platforms lacking support The mac tests were raising an AttributeError without the default arg. Differential Revision: https://phab.mercurial-scm.org/D11906
tests/hghave.py
--- a/tests/hghave.py	Sun Dec 12 19:36:11 2021 -0500
+++ b/tests/hghave.py	Mon Dec 13 00:18:31 2021 -0500
@@ -266,7 +266,10 @@
 
 @check("suidbit", "setuid and setgid bit")
 def has_suidbit():
-    if getattr(os, "statvfs", None) is None or getattr(os, "ST_NOSUID") is None:
+    if (
+        getattr(os, "statvfs", None) is None
+        or getattr(os, "ST_NOSUID", None) is None
+    ):
         return False
     return bool(os.statvfs('.').f_flag & os.ST_NOSUID)