Commit dacb8b62 authored by Tomoyuki Sahara's avatar Tomoyuki Sahara

failed to remove temporary files!

parent 1629e860
def unixserver_test_block
File.unlink SocketTest.tmppath rescue nil
path = SocketTest.tmppath
File.unlink path rescue nil
begin
result = yield SocketTest.tmppath
result = yield path
ensure
File.unlink SocketTest.tmppath rescue nil
File.unlink path rescue nil
end
result
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment