| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 4 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 6 | 5 |
| 7 # Scape errors from the valgrind bots, reproduce them locally, | 6 # Scape errors from the valgrind bots, reproduce them locally, |
| 8 # save logs as regrind-TESTNAME.log, and display any errors found. | 7 # save logs as regrind-TESTNAME.log, and display any errors found. |
| 9 # Also save files regrind-failed.txt listing failed tests, | 8 # Also save files regrind-failed.txt listing failed tests, |
| 10 # and regrind-failed-map.txt showing which bot URLs have which failed tests | 9 # and regrind-failed-map.txt showing which bot URLs have which failed tests |
| 11 # (handy when filing bugs). | 10 # (handy when filing bugs). |
| 12 # | 11 # |
| 13 # Only scrapes linux layout bot at the moment. | 12 # Only scrapes linux layout bot at the moment. |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 129 |
| 131 if test $do_repro = 1 | 130 if test $do_repro = 1 |
| 132 then | 131 then |
| 133 repro_layout | 132 repro_layout |
| 134 fi | 133 fi |
| 135 | 134 |
| 136 if test $do_cleanup = 1 | 135 if test $do_cleanup = 1 |
| 137 then | 136 then |
| 138 rm -f regrind-errfiles.txt regrind-*.tmp* | 137 rm -f regrind-errfiles.txt regrind-*.tmp* |
| 139 fi | 138 fi |
| OLD | NEW |