HomeSort by relevance Sort by last modified time
    Searched refs:test_run (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/chrome/test/ispy/server/
rebaseline_handler.py 21 Expects a test_run as a parameter and updates the associated version file to
24 test_run = self.request.get('test_run')
26 # Fail if test_run parameter is missing.
27 if not test_run:
30 {'error': '\'test_run\' must be supplied to rebaseline.'}))
36 ispy.RebaselineToTestRun(test_run)
38 self.redirect('/?test_run=%s' % test_run)
main_view_handler.py 32 If the test_run parameter is specified, then a page displaying all of
33 the failed runs in the test_run will be shown. Otherwise a view listing
36 test_run = self.request.get('test_run')
40 if test_run:
41 self._GetForTestRun(test_run, ispy)
58 base_url = '/?test_run=%s'
61 data['links'] = [(test_run, base_url % test_run) for test_run in test_runs
    [all...]
update_mask_handler.py 31 test_run = self.request.get('test_run')
35 if not (test_run and expectation):
38 {'error': '\'test_run\' and \'expectation\' must be '
45 if not self.ispy.FailureExists(test_run, expectation):
51 failure = self.ispy.GetFailure(test_run, expectation)
57 self.ispy.RemoveFailure(test_run, expectation)
59 self.redirect('/?test_run=%s' % test_run)
debug_view_handler.py 28 test_run: The test run.
31 test_run = self.request.get('test_run')
34 actual_path = ispy_utils.GetFailurePath(test_run, expectation, 'actual.png')
42 data['test_run'] = test_run
  /external/chromium_org/chrome/test/ispy/
ispy_api.py 143 def PerformComparison(self, test_run, device_type, expectation,
148 test_run: name for the test run.
157 test_run,
162 def CanRebaselineToTestRun(self, test_run):
168 if test_run in self._rebaselineable_cache:
171 ispy_utils.GetTestRunPath(test_run, 'rebaseline.txt'))
173 def RebaselineToTestRun(self, test_run):
174 """Update the version file to use expectations associated with |test_run|.
177 test_run: The name of the test run to rebaseline.
179 rebaseline_path = ispy_utils.GetTestRunPath(test_run, 'rebaseline.txt'
    [all...]
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_format_test.cc 69 for (size_t test_run = 0; test_run < 50; ++test_run) {
  /external/chromium_org/chrome/test/ispy/common/
ispy_utils.py 39 def GetFailurePath(test_run, expectation, file_name=''):
43 test_run: name of the test run.
50 return GetTestRunPath(test_run, '%s/%s' % (expectation, file_name))
53 def GetTestRunPath(test_run, file_name=''):
57 test_run: name of the test run.
63 return 'failures/%s/%s' % (test_run, file_name)
134 def PerformComparison(self, test_run, expectation, actual):
138 test_run: the name of the test_run.
154 GetFailurePath(test_run, expectation, 'actual.png'), actual
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
runner_unittest.py 90 def test_run(self, verbose=0, timing=False, child_processes=1, quiet=False): member in class:RunnerTest
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TimerTaskTest.java 218 public void test_run() { method in class:TimerTaskTest
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_clib.py 105 def test_run(self): member in class:BuildCLibTestCase
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_clib.py 105 def test_run(self): member in class:BuildCLibTestCase
  /external/lldb/test/unittest2/test/
test_suite.py 186 def test_run(self): member in class:Test_TestSuite
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_suite.py 192 def test_run(self): member in class:Test_TestSuite
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_suite.py 192 def test_run(self): member in class:Test_TestSuite
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadTest.java 742 public void test_run() { method in class:ThreadTest

Completed in 197 milliseconds