コード例 #1
0
 def _CreateExpectations(self):
     # By default, creates an empty GpuTestExpectations object. Override
     # this in subclasses to set up test-specific expectations. Must
     # return an instance of GpuTestExpectations or a subclass.
     #
     # Do not call this directly. Call GetExpectations where necessary.
     return gpu_test_expectations.GpuTestExpectations()
コード例 #2
0
 def _CreateExpectations(cls):
     expectations = gpu_test_expectations.GpuTestExpectations()
     expectations.Fail('expected_failure')
     expectations.Flaky('expected_flaky', max_num_retries=3)
     expectations.Skip('expected_skip')
     return expectations
コード例 #3
0
 def _CreateExpectations(cls):
     expectations = gpu_test_expectations.GpuTestExpectations()
     expectations.Skip('success')
     return expectations
コード例 #4
0
 def _CreateExpectations(cls):
     expectations = gpu_test_expectations.GpuTestExpectations()
     return expectations
コード例 #5
0
 def _CreateExpectations(cls):
     return gpu_test_expectations.GpuTestExpectations()