예제 #1
0
파일: igt.py 프로젝트: rafalmiel/piglit
    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)
예제 #2
0
파일: igt.py 프로젝트: rafalmiel/piglit
    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)
예제 #3
0
 def __init__(self, category, subtest):
     ExecTest.__init__(
         self,
         [bin_oglconform, '-minFmt', '-v', '4', '-test', category, subtest])
예제 #4
0
 def __init__(self, testpath):
     ExecTest.__init__(self, [path.join(testBinDir, 'GTF3'), '-minfmt', '-width=113', '-height=47', '-run=' + testpath])
예제 #5
0
 def __init__(self, category, subtest):
     ExecTest.__init__(self, [bin_oglconform, '-minFmt', '-v', '4', '-test', category, subtest])
예제 #6
0
파일: igt.py 프로젝트: rafalmiel/piglit
 def __init__(self, binary, arguments=[]):
     ExecTest.__init__(self, [path.join(igtTestRoot, binary)] + arguments)
예제 #7
0
 def __init__(self, testpath):
     ExecTest.__init__(self, [
         path.join(testBinDir, 'GTF3'), '-minfmt', '-width=113',
         '-height=47', '-run=' + testpath
     ])
예제 #8
0
파일: igt.py 프로젝트: rafalmiel/piglit
 def __init__(self, binary, arguments=[]):
     ExecTest.__init__(self, [path.join(igtTestRoot, binary)] + arguments)