On Thu, Mar 30, 2023 at 11:13 PM Maxim Cournoyer <maxim.courno...@gmail.com> wrote: > > Hello, > > This has been the case for the last 3 years, so I thought it'd be nice > to report it, toward having it fixed! It seems to affect only the > i686-linux machine, and not x86_64-linux.
Interesting. So, it fails on 32-bit, passes on 64-bit. Continuing inline below... > The test suite in run in parallel via the -j option of Make, e.g. > > 'make -j24 check' > > The PARALLEL environment variable is also set to the same value (e.g.: > 24) before the test suite runs. I noticed this from near the end of your output: > Test suite failed, dumping logs. > error: in phase 'check': uncaught exception: > %exception #<&invoke-error program: "make" arguments: ("check" "-j" "16") > exit-status: 2 term-signal: #f stop-signal: #f> > phase `check' failed after 193.9 seconds > command "make" "check" "-j" "16" failed with status 2 Notice the "check" "-j" "16" -- but you requested -j24. Is it possible that a mismatch here is contributing to the failures? Could you try 'make -j16 check' and see if the results are any different? >From earlier in your output: > At least one test FAILED, checking > /tmp/guix-build-subversion-1.14.2.drv-0/subversion-1.14.2/tests.log > FAIL: client-test: Unknown test failure (-6); see tests.log. > FAIL: diff-diff3-test: Unknown test failure (-6); see tests.log. > FAIL: fs-fs-pack-test: Unknown test failure (-6); see tests.log. > FAIL: fs-fs-private-test: Unknown test failure (-6); see tests.log. > FAIL: fs-test: Unknown test failure (-6); see tests.log. > FAIL: io-test: Unknown test failure (-6); see tests.log. > FAIL: mtcc-test: Unknown test failure (-6); see tests.log. > FAIL: op-depth-test: Unknown test failure (-6); see tests.log. > FAIL: ra-test: Unknown test failure (-6); see tests.log. > FAIL: repos-test: Unknown test failure (-6); see tests.log. > Summary of test results: > 2237 tests PASSED > 165 tests SKIPPED > 65 tests XFAILED (16 WORK-IN-PROGRESS) > 10 tests FAILED > Python version: 3.9.9. > SUMMARY: Some tests failed Do you happen to have the tests.log file mentioned above? It might contain more details about the failures (or it might just tell us about the same uncaught exception). Finally, do the same tests fail on each parallel run or are there variations? Thanks for the report, Nathan