Chromium Code Reviews| Index: tools/valgrind/valgrind_test.py |
| =================================================================== |
| --- tools/valgrind/valgrind_test.py (revision 111157) |
| +++ tools/valgrind/valgrind_test.py (working copy) |
| @@ -849,8 +849,15 @@ |
| proc += ["-debug"] |
| proc += ["-logdir", common.NormalizeWindowsPath(self.log_dir)] |
| - proc += ["-batch", "-quiet", "-no_results_to_stderr"] |
| + # Use -no_summary to suppress DrMemory's summary and init-time |
| + # notifications. We generate our own with drmemory_analyze.py. |
| + proc += ["-batch", "-no_summary"] |
|
Timur Iskhodzhanov
2011/11/22 19:13:59
this won't change the contents or the results.txt
Reid Kleckner (google)
2011/11/22 19:59:35
Yes, results.txt won't be affected.
|
| + |
| + # Un-comment to disable interleaved output. Will also suppress error |
| + # messages normally printed to stderr. |
| + #proc += ["-quiet", "-no_results_to_stderr"] |
| + |
| proc += ["-callstack_max_frames", "40"] |
| # make callstacks easier to read |