Remove unused function.
authorTim Newsome <tim@sifive.com>
Fri, 22 Sep 2017 19:57:51 +0000 (12:57 -0700)
committerTim Newsome <tim@sifive.com>
Fri, 22 Sep 2017 19:57:51 +0000 (12:57 -0700)
debug/testlib.py

index 996c188efb8aff2a0c41e063cad437322b5361d9..0bdb433a1f36301e7896bb2e36d774fb05d56749 100644 (file)
@@ -50,15 +50,6 @@ def compile(args, xlen=32): # pylint: disable=redefined-builtin
         header("")
         raise Exception("Compile failed!")
 
-def unused_port():
-    # http://stackoverflow.com/questions/2838244/get-open-tcp-port-in-python/2838309#2838309
-    import socket
-    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
-    s.bind(("", 0))
-    port = s.getsockname()[1]
-    s.close()
-    return port
-
 class Spike(object):
     logname = "spike-%d.log" % os.getpid()