e1970ce43a
This adds t/ directory to host test suite, a test helper library and a basic set of tests. Petr Baudis raised many valid points at the earlier attempts in git mailing list. This round, test-lib.sh has been updated to a bit more modern style, and the default output is made easier to read. Also included is one sample test script that tests the very basics. This test has already found one leftover bug missed when we introduced symlink support, which has been fixed since then. The supplied Makefile is designed to run all the available tests. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Petr Baudis <pasky@ucw.cz>
16 lines
231 B
Makefile
16 lines
231 B
Makefile
# Run tests
|
|
#
|
|
# Copyright (c) 2005 Junio C Hamano
|
|
#
|
|
#OPTS=--verbose --debug
|
|
OPTS=
|
|
|
|
T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
|
|
|
|
all::
|
|
@$(foreach t,$T,echo "*** $t ***"; sh $t $(OPTS) || exit; )
|
|
rm -fr trash
|
|
|
|
clean::
|
|
rm -fr trash
|