spec-test-script: Make case_last_words larger (#3651)

The current size is usually too small to contain useful info for post mortem investigations.
This commit is contained in:
YAMAMOTO Takashi 2024-07-23 18:04:16 +09:00 committed by GitHub
parent 5e7d3ed59b
commit 5744e11916
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -247,7 +247,7 @@ def test_case(
if verbose_flag:
print(output, end="")
else:
if len(case_last_words) == 16:
if len(case_last_words) == 1024:
case_last_words.pop(0)
case_last_words.append(output)