aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/python_utils
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-05-10 11:30:11 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2018-05-10 11:30:11 +0200
commit62861977f2401249c48d1d7c3910cba3a4214d28 (patch)
treed94e8ebf0e106d59d00815f8b07166b1153d35f0 /tools/run_tests/python_utils
parentab5b48435eafe416536027b645db8ef1e9f46181 (diff)
run_tests: keep longer logs from individual test cases
Diffstat (limited to 'tools/run_tests/python_utils')
-rwxr-xr-xtools/run_tests/python_utils/jobset.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/run_tests/python_utils/jobset.py b/tools/run_tests/python_utils/jobset.py
index 6a3391337e..561f453da7 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