]> arthur.barton.de Git - bup.git/blobdiff - t/mksock
tests: move all tests to test/
[bup.git] / t / mksock
diff --git a/t/mksock b/t/mksock
deleted file mode 100755 (executable)
index 88372c3..0000000
--- a/t/mksock
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-"""": # -*-python-*-
-bup_python="$(dirname "$0")/../config/bin/python" || exit $?
-exec "$bup_python" "$0" ${1+"$@"}
-"""
-# end of bup preamble
-
-from __future__ import absolute_import
-
-import socket, sys
-
-s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM, 0)
-s.bind(sys.argv[1])