Home
last modified time | relevance | path

Searched refs:_test_results (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/tests/
Drun_perf_tests.py212 self._test_results = {}
215 return test in self._test_results
218 self._test_results[test] = {'expected': SKIP, 'actual': SKIP}
222 self._test_results[test] = {'expected': PASS, 'actual': PASS}
226 self._test_results[test] = {'expected': PASS, 'actual': FAIL, 'is_unexpected': True}
240 if self._test_results:
241 self._results['tests'][test_suite] = self._test_results
242 self._test_results = {}
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/
DesextcTessellationShaderIsolines.hpp146 typedef std::vector<_test_result> _test_results; typedef in glcts::TessellationShadersIsolines
147 typedef _test_results::iterator _test_results_iterator;
148 …typedef std::map<_tessellation_shader_vertex_spacing, _test_results> _test_results_per_vertex_spac…
DesextcTessellationShaderIsolines.cpp502 _test_results& test_results = m_test_results[vertex_spacing_mode]; in findTestResult()