tests: disable `worker.backgroundclose` to stabilize a test on Windows
TIL that `worker.enabled=0` doesn't prevent these workers from spinning up. At
any rate, there's already a whole lot of conditionalized output following
`cat client.log`, the placement of the "starting 4 threads for background file
closing" message seems unstable, and we don't care about those worker threads
here. Preventing the message is better for test maintenance.
--- a/tests/test-clone-stream-revlog-split.t Fri Oct 04 11:22:30 2024 -0400
+++ b/tests/test-clone-stream-revlog-split.t Fri Oct 04 12:53:02 2024 -0400
@@ -68,7 +68,7 @@
$ ( \
> hg clone --debug --stream -U http://localhost:$HGPORT1 \
- > clone-while-split > client.log 2>&1; \
+ > clone-while-split --config worker.backgroundclose=0 > client.log 2>&1; \
> touch "$HG_TEST_STREAM_WALKED_FILE_3" \
> ) &