diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2016-09-20 20:53:44 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-09-29 22:07:24 +0200 |
commit | 49c7e53572be8be7848ff99aa5e60ffd4dc316eb (patch) | |
tree | 6e198cd8171f3f8c267fcb9c0acaf4b464c0dcce /git-interface/test/Makefile | |
parent | 1a999810e3a6da21181c91f6b383f69db399cf1c (diff) |
Reorganize tests
Move and rename the existing git-interface tests such that tests for
other scripts can be added easily.
In particular, the following changes are made:
* Move the existing tests from git-interface/test/ to test/.
* Rename t0001-auth.sh to t1100-git-auth.sh.
* Rename t0002-serve.sh to t1200-git-serve.sh.
* Rename t0003-update.sh to t1300-git-update.sh.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'git-interface/test/Makefile')
-rw-r--r-- | git-interface/test/Makefile | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/git-interface/test/Makefile b/git-interface/test/Makefile deleted file mode 100644 index d6f0f74..0000000 --- a/git-interface/test/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)) - -check: $(T) - -clean: - $(RM) -r test-results/ - -$(T): - @echo "*** $@ ***"; $(SHELL) $@ - -.PHONY: check clean $(T) |