36f5f9777261eb502ba419f440b10dc282a5f510
[tinc] / test / integration / testlib / const.py
1 """Some hardcoded constants."""
2
3 import os
4
5 # Exit code to skip current test
6 EXIT_SKIP = 77
7
8 # Family name for multiprocessing Listener/Connection
9 MPC_FAMILY = "AF_PIPE" if os.name == "nt" else "AF_UNIX"