소스 검색

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

The current size is usually too small to contain useful info for post mortem investigations.
YAMAMOTO Takashi 1 년 전
부모
커밋
5744e11916
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/wamr-test-suites/spec-test-script/all.py

+ 1 - 1
tests/wamr-test-suites/spec-test-script/all.py

@@ -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)