소스 검색

Merge pull request #5375 from ThomasWaldmann/improve-self-test-msg-master

if self test fails, also point to OS and hardware, fixes #5334
TW 4 년 전
부모
커밋
7fb64dc75f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/borg/selftest.py

+ 1 - 1
src/borg/selftest.py

@@ -72,7 +72,7 @@ def selftest(logger):
                      successful_tests, SELFTEST_COUNT)
     if not result.wasSuccessful() or count_mismatch:
         logger.error("self test failed\n"
-                     "This is a bug either in Borg or in the package / distribution you use.")
+                     "Could be a bug either in Borg, the package / distribution you use, your OS or your hardware.")
         sys.exit(2)
         assert False, "sanity assertion failed: ran beyond sys.exit()"
     selftest_elapsed = time.perf_counter() - selftest_started