From 62861977f2401249c48d1d7c3910cba3a4214d28 Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Thu, 10 May 2018 11:30:11 +0200 Subject: [PATCH] run_tests: keep longer logs from individual test cases --- tools/run_tests/python_utils/jobset.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/run_tests/python_utils/jobset.py b/tools/run_tests/python_utils/jobset.py index 6a3391337e9..561f453da7b 100755 --- a/tools/run_tests/python_utils/jobset.py +++ b/tools/run_tests/python_utils/jobset.py @@ -31,7 +31,9 @@ import errno measure_cpu_costs = False _DEFAULT_MAX_JOBS = 16 * multiprocessing.cpu_count() -_MAX_RESULT_SIZE = 8192 +# Maximum number of bytes of job's stdout that will be stored in the result. +# Only last N bytes of stdout will be kept if the actual output longer. +_MAX_RESULT_SIZE = 64 * 1024 # NOTE: If you change this, please make sure to test reviewing the