diff options
author | Frédéric Mangano-Tarumi <fmang@mg0.fr> | 2020-02-23 19:53:13 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2020-02-27 16:44:36 +0100 |
commit | e374a91febe53b72ff4cb73b153348f067374c68 (patch) | |
tree | 038973590aace5ba4f4899cc256d843ef2505867 | |
parent | 81d55e70ee0469018af86d203ceaf2fece691ea8 (diff) | |
download | aur-e374a91febe53b72ff4cb73b153348f067374c68.tar.gz aur-e374a91febe53b72ff4cb73b153348f067374c68.tar.xz |
Change the extension of TAP test suites to .t
This is the common convention for TAP, and makes harnesses like prove
automatically detect them. Plus, test suites don’t have to be shell
scripts anymore.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r-- | test/Makefile | 2 | ||||
-rwxr-xr-x | test/t1100-git-auth.t (renamed from test/t1100-git-auth.sh) | 0 | ||||
-rwxr-xr-x | test/t1200-git-serve.t (renamed from test/t1200-git-serve.sh) | 0 | ||||
-rwxr-xr-x | test/t1300-git-update.t (renamed from test/t1300-git-update.sh) | 0 | ||||
-rwxr-xr-x | test/t2100-mkpkglists.t (renamed from test/t2100-mkpkglists.sh) | 0 | ||||
-rwxr-xr-x | test/t2200-tuvotereminder.t (renamed from test/t2200-tuvotereminder.sh) | 0 | ||||
-rwxr-xr-x | test/t2300-pkgmaint.t (renamed from test/t2300-pkgmaint.sh) | 0 | ||||
-rwxr-xr-x | test/t2400-aurblup.t (renamed from test/t2400-aurblup.sh) | 0 | ||||
-rwxr-xr-x | test/t2500-notify.t (renamed from test/t2500-notify.sh) | 0 | ||||
-rwxr-xr-x | test/t2600-rendercomment.t (renamed from test/t2600-rendercomment.sh) | 0 | ||||
-rwxr-xr-x | test/t2700-usermaint.t (renamed from test/t2700-usermaint.sh) | 0 |
11 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index f559e169..d310c8f5 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,4 +1,4 @@ -T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)) +T = $(sort $(wildcard *.t)) check: $(T) diff --git a/test/t1100-git-auth.sh b/test/t1100-git-auth.t index 71d526f2..71d526f2 100755 --- a/test/t1100-git-auth.sh +++ b/test/t1100-git-auth.t diff --git a/test/t1200-git-serve.sh b/test/t1200-git-serve.t index e817b2cf..e817b2cf 100755 --- a/test/t1200-git-serve.sh +++ b/test/t1200-git-serve.t diff --git a/test/t1300-git-update.sh b/test/t1300-git-update.t index 06d14984..06d14984 100755 --- a/test/t1300-git-update.sh +++ b/test/t1300-git-update.t diff --git a/test/t2100-mkpkglists.sh b/test/t2100-mkpkglists.t index fc11d073..fc11d073 100755 --- a/test/t2100-mkpkglists.sh +++ b/test/t2100-mkpkglists.t diff --git a/test/t2200-tuvotereminder.sh b/test/t2200-tuvotereminder.t index c82ce874..c82ce874 100755 --- a/test/t2200-tuvotereminder.sh +++ b/test/t2200-tuvotereminder.t diff --git a/test/t2300-pkgmaint.sh b/test/t2300-pkgmaint.t index 478df526..478df526 100755 --- a/test/t2300-pkgmaint.sh +++ b/test/t2300-pkgmaint.t diff --git a/test/t2400-aurblup.sh b/test/t2400-aurblup.t index 708281c6..708281c6 100755 --- a/test/t2400-aurblup.sh +++ b/test/t2400-aurblup.t diff --git a/test/t2500-notify.sh b/test/t2500-notify.t index 380e65b8..380e65b8 100755 --- a/test/t2500-notify.sh +++ b/test/t2500-notify.t diff --git a/test/t2600-rendercomment.sh b/test/t2600-rendercomment.t index be408b80..be408b80 100755 --- a/test/t2600-rendercomment.sh +++ b/test/t2600-rendercomment.t diff --git a/test/t2700-usermaint.sh b/test/t2700-usermaint.t index 4f625142..4f625142 100755 --- a/test/t2700-usermaint.sh +++ b/test/t2700-usermaint.t |