Ejemplo n.º 1
0
    def run(self, env):
        if not igtEnvironmentOk:
            results = TestResult()
            results['result'] = 'fail'
            results['info'] = unicode("Test Environment isn't OK")

            return results

        return ExecTest.run(self, env)
Ejemplo n.º 2
0
    def run(self, env):
        if not igtEnvironmentOk:
            results = TestResult()
            results['result'] = 'fail'
            results['info'] = unicode("Test Environment isn't OK")

            return results

        return ExecTest.run(self, env)
Ejemplo n.º 3
0
 def __init__(self, category, subtest):
     ExecTest.__init__(
         self,
         [bin_oglconform, '-minFmt', '-v', '4', '-test', category, subtest])
Ejemplo n.º 4
0
 def __init__(self, testpath):
     ExecTest.__init__(self, [path.join(testBinDir, 'GTF3'), '-minfmt', '-width=113', '-height=47', '-run=' + testpath])
Ejemplo n.º 5
0
 def __init__(self, category, subtest):
     ExecTest.__init__(self, [bin_oglconform, '-minFmt', '-v', '4', '-test', category, subtest])
Ejemplo n.º 6
0
 def __init__(self, binary, arguments=[]):
     ExecTest.__init__(self, [path.join(igtTestRoot, binary)] + arguments)
Ejemplo n.º 7
0
 def __init__(self, testpath):
     ExecTest.__init__(self, [
         path.join(testBinDir, 'GTF3'), '-minfmt', '-width=113',
         '-height=47', '-run=' + testpath
     ])
Ejemplo n.º 8
0
 def __init__(self, binary, arguments=[]):
     ExecTest.__init__(self, [path.join(igtTestRoot, binary)] + arguments)