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

  /external/chromium_org/tools/perf_expectations/
update_perf_expectations_unittest.py 23 def VerifyPreparedTests(self, tests_to_update, reva, revb):
26 upe_mod.PrepareTestsForUpdate(tests_to_update, all_tests_copy, reva, revb)
27 # Make sure reva < revb
28 if reva > revb:
29 temp = reva
30 reva = revb
40 # Make sure reva and revb values are correctly set.
41 self.assertEqual(reva, new_test_value['reva'])
46 # Make sure the sha1, reva and revb values have not changed
    [all...]
update_perf_expectations.py 12 2.) Figure out reva and revb values, which is the starting and ending revision
21 "win-release/media_tests_av_perf/fps/tulip2.m4a": {"reva": 163299, \
27 "win-release/media_tests_av_perf/fps/tulip2.m4a": {"reva": <new reva>, \
37 win-release/media_tests_av_perf/fps/tulip2.m4a --reva 12345 --revb 23456
42 python update_perf_expectations.py -i input.txt --reva 12345 --revb 23456
48 --reva 12345 --revb 23456
50 python update_perf_expectations.py -f win-release/.*/seek/ --reva 12345 \
55 python update_perf_expectations.py -i input.txt --reva 12345 --revb 23456
58 python update_perf_expectations.py -f .*-release/.*/seek/ --reva 12345
    [all...]
make_expectations.py 81 # reva and revb always come first.
82 for subkey in ['reva', 'revb']:
194 # Skip expectations that are missing a reva or revb. We can't generate
196 if not(value.has_key('reva') and value.has_key('revb')):
200 reva = int(value['reva'])
202 # Ensure that reva is less than revb.
203 if reva > revb:
204 temp = reva
205 reva = rev
    [all...]

Completed in 49 milliseconds