Move t -> tests

This commit is contained in:
vxclutch
2026-05-13 10:40:05 -04:00
parent fe74b7b7f8
commit 8c99df4943
4 changed files with 5 additions and 5 deletions

View File

@@ -26,10 +26,10 @@ dist: clean
tar -czf $(DIST).tar.gz $(DIST)
rm -rf $(DIST)
check:
check: $(BIN)
@failed=0; \
for f in ./t/*; do \
[ "$$f" = "./t/init.sh" ] && continue; \
for f in ./tests/*; do \
[ "$$f" = "./tests/init.sh" ] && continue; \
[ -f "$$f" ] || continue; \
name=$$(basename "$$f"); \
sh "$$f"; rc=$$?; \

View File

@@ -7,7 +7,7 @@
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
. ./t/init.sh
. ./tests/init.sh
cat <<EOF >exp || framework_failure_
tcpl: Hello, World!

View File

@@ -7,7 +7,7 @@
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
. ./t/init.sh
. ./tests/init.sh
cat <<EOF >exp || framework_failure_
tcpl: Hello, Seaman!