]> arthur.barton.de Git - bup.git/blob - t/mksock
Add current-filesystem and path-filesystems to t/lib.sh; use to guard test.
[bup.git] / t / mksock
1 #!/usr/bin/env python
2
3 import socket, sys
4
5 s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM, 0)
6 s.bind(sys.argv[1])