Enable parallel tests
commitabc5d372ec242fc654dc6780df6ea3d63dc72f2f
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>
Fri, 8 Aug 2008 11:08:37 +0000 (8 13:08 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sat, 9 Aug 2008 05:24:28 +0000 (8 22:24 -0700)
treeab7dc98b9d8ffbfd4d8c6624bbd1a520d11f6a08
parente3df89a4b167c2ca0bd2b0a0025fd16c4d3dd651
Enable parallel tests

On multiprocessor machines, or with I/O heavy tests (that leave the
CPU waiting a lot), it makes sense to parallelize the tests.

However, care has to be taken that the different jobs use different
trash directories.

This commit does so, by creating the trash directories with a suffix
that is unique with regard to the test, as it is the test's base name.

Further, the trash directory is removed in the test itself if
everything went fine, so that the trash directories do not
pile up only to be removed at the very end.

If a test failed, the trash directory is not removed.  Chances are
that the exact error message is lost in the clutter, but you can still
see what test failed from the name of the trash directory, and repeat
the test (without -j).

If all was good, you will see the aggregated results.

Suggestions to simplify this commit came from Junio and RenĂ©.

There still is an issue with tests that want to run a server process and
listen to a fixed port (http and svn) --- they cannot run in parallel but
this patch does not address this issue.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/Makefile
t/test-lib.sh