2013-02-15 16:52:16 +00:00
|
|
|
require 'test/unit'
|
|
|
|
require 'environment'
|
2018-02-09 10:26:08 +00:00
|
|
|
require 'ld_preload'
|
2014-02-27 14:21:36 +00:00
|
|
|
require 'proxy_tests'
|
|
|
|
|
2013-02-15 16:52:16 +00:00
|
|
|
class TestProxyMode < Test::Unit::TestCase
|
2018-02-09 10:26:08 +00:00
|
|
|
|
|
|
|
include LdPreload
|
2014-02-27 14:21:36 +00:00
|
|
|
include ProxyTests
|
|
|
|
|
2013-02-15 16:52:16 +00:00
|
|
|
def setup
|
|
|
|
super
|
|
|
|
@env = Environment.new
|
2018-02-02 21:34:14 +00:00
|
|
|
@env.writefile1('f' * 16)
|
2013-02-15 16:52:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
@env.cleanup
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|