aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@qt.io>2020-05-18 09:31:26 +0200
committerTim Jenssen <tim.jenssen@qt.io>2020-05-18 07:56:05 +0000
commit2199a6763e33cad099d402fed865dd7bb96af37c (patch)
treeda4979da1b0095245129a6d6ab8b1b40972c9579
parent1aaeea0f4d59df463cf4da087782ab41d1505c77 (diff)
increase saved lines in runCommand for error output casesv5.15.0-packaging
Change-Id: I1f72e5ae9da0f61a888c2c2fad37e526a34efa93 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
-rw-r--r--packaging-tools/bld_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging-tools/bld_utils.py b/packaging-tools/bld_utils.py
index d0ce059c4..170e8fa39 100644
--- a/packaging-tools/bld_utils.py
+++ b/packaging-tools/bld_utils.py
@@ -320,7 +320,7 @@ def runCommand(command, currentWorkingDirectory, callerArguments = None, init_en
stdout = subprocess.PIPE, stderr = subprocess.PIPE,
cwd = currentWorkingDirectory, bufsize = -1, env = environment)
- maxSavedLineNumbers = 100
+ maxSavedLineNumbers = 1000
lastStdOutLines = collections.deque(maxlen = maxSavedLineNumbers)
lastStdErrLines = collections.deque(maxlen = maxSavedLineNumbers)