From: Mark Wooding Date: Mon, 27 Nov 2017 02:03:52 +0000 (+0000) Subject: tests/dtest.py: Maintain a separate test root for each test. X-Git-Tag: 5.2~54 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/commitdiff_plain/3dd7ec41f4067b35740aba970b6405dbd3113f8f?hp=3dd7ec41f4067b35740aba970b6405dbd3113f8f tests/dtest.py: Maintain a separate test root for each test. Now they can run in parallel without breaking each other, which is nice. It's nice for two reasons: firstly, Automake changed behaviour and runs tests in parallel by default nowadays; and secondly, the tests are rather slow because they involve a bunch of waiting around for things, and waiting for stuff in parallel is easy. The downside is that we end up gobbling a lot of disk space with all of the logfiles. I think this is a good trade. ---