comparison mx/sanitycheck.py @ 13967:4cd7c6629841

mx_graal: fix pylint 1.1.0 warnings
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 17 Feb 2014 23:09:19 +0100
parents 99769479f9ce
children fdb912b1eb7b
comparison
equal deleted inserted replaced
13966:be0d961e3a88 13967:4cd7c6629841
66 66
67 dacapoGateBuildLevels = { 67 dacapoGateBuildLevels = {
68 'avrora': ['product', 'fastdebug', 'debug'], 68 'avrora': ['product', 'fastdebug', 'debug'],
69 'batik': ['product', 'fastdebug', 'debug'], 69 'batik': ['product', 'fastdebug', 'debug'],
70 'eclipse': ['product'], 70 'eclipse': ['product'],
71 'fop': [ 'fastdebug', 'debug'], 71 'fop': ['fastdebug', 'debug'],
72 'h2': ['product', 'fastdebug', 'debug'], 72 'h2': ['product', 'fastdebug', 'debug'],
73 'jython': ['product', 'fastdebug', 'debug'], 73 'jython': ['product', 'fastdebug', 'debug'],
74 'luindex': ['product', 'fastdebug', 'debug'], 74 'luindex': ['product', 'fastdebug', 'debug'],
75 'lusearch': ['product'], 75 'lusearch': ['product'],
76 'pmd': ['product', 'fastdebug', 'debug'], 76 'pmd': ['product', 'fastdebug', 'debug'],
77 'sunflow': [ 'fastdebug', 'debug'], 77 'sunflow': ['fastdebug', 'debug'],
78 'tomcat': ['product', 'fastdebug', 'debug'], 78 'tomcat': ['product', 'fastdebug', 'debug'],
79 'tradebeans': ['product', 'fastdebug', 'debug'], 79 'tradebeans': ['product', 'fastdebug', 'debug'],
80 # tradesoap is too unreliable for the gate, often crashing with "java.net.BindException: Address already in use" 80 # tradesoap is too unreliable for the gate, often crashing with "java.net.BindException: Address already in use"
81 'tradesoap': [ ], 81 'tradesoap': [],
82 'xalan': ['product', 'fastdebug', 'debug'], 82 'xalan': ['product', 'fastdebug', 'debug'],
83 } 83 }
84 84
85 dacapoScalaGateBuildLevels = { 85 dacapoScalaGateBuildLevels = {
86 'actors': ['product', 'fastdebug', 'debug'], 86 'actors': ['product', 'fastdebug', 'debug'],
321 321
322 def test(self, vm, cwd=None, extraVmOpts=None, vmbuild=None): 322 def test(self, vm, cwd=None, extraVmOpts=None, vmbuild=None):
323 """ 323 """
324 Run this program as a sanity test. 324 Run this program as a sanity test.
325 """ 325 """
326 if (vm in self.ignoredVMs): 326 if vm in self.ignoredVMs:
327 return True 327 return True
328 if cwd is None: 328 if cwd is None:
329 cwd = self.defaultCwd 329 cwd = self.defaultCwd
330 parser = OutputParser() 330 parser = OutputParser()
331 jvmError = re.compile(r"(?P<jvmerror>([A-Z]:|/).*[/\\]hs_err_pid[0-9]+\.log)") 331 jvmError = re.compile(r"(?P<jvmerror>([A-Z]:|/).*[/\\]hs_err_pid[0-9]+\.log)")
366 366
367 def bench(self, vm, cwd=None, extraVmOpts=None, vmbuild=None): 367 def bench(self, vm, cwd=None, extraVmOpts=None, vmbuild=None):
368 """ 368 """
369 Run this program as a benchmark. 369 Run this program as a benchmark.
370 """ 370 """
371 if (vm in self.ignoredVMs): 371 if vm in self.ignoredVMs:
372 return {} 372 return {}
373 if cwd is None: 373 if cwd is None:
374 cwd = self.defaultCwd 374 cwd = self.defaultCwd
375 parser = OutputParser() 375 parser = OutputParser()
376 376