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

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
layout_test_runner.py 79 def run_tests(self, expectations, test_inputs, tests_to_skip, num_workers, retrying):
81 self._test_inputs = test_inputs
86 run_results = TestRunResults(self._expectations, len(test_inputs) + len(tests_to_skip))
88 self._printer.num_tests = len(test_inputs)
100 locked_shards, unlocked_shards = self._sharder.shard_tests(test_inputs,
119 pool.run(('test_list', shard.name, shard.test_inputs) for shard in all_shards)
125 pool.run(('test_list', shard.name, shard.test_inputs) for shard in self._shards_to_redo)
242 def handle(self, name, source, test_list_name, test_inputs):
244 for i, test_input in enumerate(test_inputs):
247 self._caller.post('device_failed', test_list_name, test_inputs[i:]
    [all...]
layout_test_runner_unittest.py 105 test_inputs = [TestInput(test, 6000) for test in tests]
107 runner.run_tests(expectations, test_inputs, set(), num_workers=1, retrying=False)
191 self.assertEqual([test_input.test_name for test_input in shard.test_inputs],
manager.py 279 test_inputs = []
283 test_inputs.append(self._test_input_for_file(test))
284 return self._runner.run_tests(self._expectations, test_inputs, tests_to_skip, num_workers, retrying)
  /external/chromium_org/v8/test/mjsunit/
sin-cos.js 116 var test_inputs = []; variable
117 for (var i = -10000; i < 10000; i += 177) test_inputs.push(i/1257);
120 test_inputs.push(0);
121 test_inputs.push(0 + epsilon);
122 test_inputs.push(0 - epsilon);
123 test_inputs.push(Math.PI/2);
124 test_inputs.push(Math.PI/2 + epsilon);
125 test_inputs.push(Math.PI/2 - epsilon);
126 test_inputs.push(Math.PI);
127 test_inputs.push(Math.PI + epsilon)
    [all...]

Completed in 200 milliseconds