Rewrite integration test suite in Python
[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"