From f41a264d77193105383cb5c2a53bc196b1e9a745 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Thu, 1 Oct 2020 20:50:38 +0200 Subject: [PATCH] if self test fails, also point to OS and hardware, fixes #5334 --- src/borg/selftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/selftest.py b/src/borg/selftest.py index e8605f7cb..80707c0cc 100644 --- a/src/borg/selftest.py +++ b/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