X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=test%2Fintegration%2Ftestlib%2Fconst.py;fp=test%2Fintegration%2Ftestlib%2Fconst.py;h=b15e7034441217b29ff6e89c8578b08d9dbb7e92;hp=36f5f9777261eb502ba419f440b10dc282a5f510;hb=66eb66ec8f872db3dc12e1d01101772918d69a4a;hpb=38a4eb4ebc730d805fcab9d64fe988be42a99122 diff --git a/test/integration/testlib/const.py b/test/integration/testlib/const.py index 36f5f977..b15e7034 100755 --- a/test/integration/testlib/const.py +++ b/test/integration/testlib/const.py @@ -7,3 +7,6 @@ EXIT_SKIP = 77 # Family name for multiprocessing Listener/Connection MPC_FAMILY = "AF_PIPE" if os.name == "nt" else "AF_UNIX" + +# Do access checks on files. Disabled when not available or not applicable. +RUN_ACCESS_CHECKS = os.name != "nt" and os.geteuid() != 0