diff options
author | Craig Tiller <ctiller@google.com> | 2017-09-12 21:04:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-12 21:04:51 -0700 |
commit | f6da962134c40be4ecae2f35c4e8f7e95593c6a4 (patch) | |
tree | 19bf8400599155b7007f6670b2db98ea6b02fba1 /tools | |
parent | 5566e4e7fa77b2e705fa93d37e3bf3524363821d (diff) | |
parent | 2be06b43e7532ef2e9d1e5709ceb162957e6a926 (diff) |
Merge pull request #12521 from ctiller/rtstat
Make unmeasured CPU costs be 1, not 0
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/python_utils/jobset.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/python_utils/jobset.py b/tools/run_tests/python_utils/jobset.py index 08d652ae3f..80e79444ea 100755 --- a/tools/run_tests/python_utils/jobset.py +++ b/tools/run_tests/python_utils/jobset.py @@ -224,7 +224,7 @@ class JobResult(object): self.retries = 0 self.message = '' self.cpu_estimated = 1 - self.cpu_measured = 0 + self.cpu_measured = 1 def read_from_start(f): |