diff options
author | Steven Knight <knight@baldmt.com> | 2010-08-18 01:43:00 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-08-18 01:43:00 (GMT) |
commit | 1bffec73d2b011e9a3939ed01e55ec0c25eca536 (patch) | |
tree | dfa93c835a8af524527773500bf703c2a8fa3c85 /bin | |
parent | 9ebed2342c9694e45e9a4605a7f040db56919073 (diff) | |
download | SCons-1bffec73d2b011e9a3939ed01e55ec0c25eca536.zip SCons-1bffec73d2b011e9a3939ed01e55ec0c25eca536.tar.gz SCons-1bffec73d2b011e9a3939ed01e55ec0c25eca536.tar.bz2 |
Have bin/calibrate.py print the timing run output if it can't find
any appropriate "VARIABLE:" lines in the output.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/calibrate.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/calibrate.py b/bin/calibrate.py index f377869..72a6ac7 100644 --- a/bin/calibrate.py +++ b/bin/calibrate.py @@ -64,7 +64,11 @@ def main(argv=None): output = p.communicate()[0] vm = variable_re.search(output) em = elapsed_re.search(output) - elapsed = float(em.group(1)) + try: + elapsed = float(em.group(1)) + except AttributeError: + print output + raise print "run %3d: %7.3f: %s" % (run, elapsed, ' '.join(vm.groups())) if opts.min < elapsed and elapsed < opts.max: good += 1 |