예제 #1
0
 def __init__(self, host, port_name, **kwargs):
     ApplePort.__init__(self, host, port_name, **kwargs)
     self._leak_detector = LeakDetector(self)
     if self.get_option("leaks"):
         # DumpRenderTree slows down noticably if we run more than about 1000 tests in a batch
         # with MallocStackLogging enabled.
         self.set_option_default("batch_size", 1000)
예제 #2
0
파일: mac.py 프로젝트: 57559684/ltframe
 def __init__(self, host, port_name, **kwargs):
     ApplePort.__init__(self, host, port_name, **kwargs)
     self._leak_detector = LeakDetector(self)
     if self.get_option("leaks"):
         # DumpRenderTree slows down noticably if we run more than about 1000 tests in a batch
         # with MallocStackLogging enabled.
         self.set_option_default("batch_size", 1000)
예제 #3
0
파일: win.py 프로젝트: sysrqb/chromium-src
 def __init__(self, **kwargs):
     ApplePort.__init__(self, **kwargs)
     self._operating_system = "win"
예제 #4
0
 def __init__(self, host, **kwargs):
     ApplePort.__init__(self, host, **kwargs)
     self._operating_system = 'win'
예제 #5
0
 def __init__(self, host, **kwargs):
     self._operating_system = 'win'
     ApplePort.__init__(self, host, **kwargs)
예제 #6
0
파일: win.py 프로젝트: sitedata/webkit.org
 def __init__(self, **kwargs):
     ApplePort.__init__(self, **kwargs)
     self._operating_system = 'win'