aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerass El Hafidi <vitali64pmemail@protonmail.com>2023-04-08 16:20:23 +0200
committerFerass El Hafidi <vitali64pmemail@protonmail.com>2023-04-08 16:20:23 +0200
commit70dd2ebfa6bbc45e622e495898575133e95a8da7 (patch)
tree534c77c9d505e132ba48ff046ad886d069ff4edb
parentd702d63c2a66d9adaf9c350eeebbf79a41e524b9 (diff)
downloadfases-70dd2ebfa6bbc45e622e495898575133e95a8da7.tar.gz
fases-70dd2ebfa6bbc45e622e495898575133e95a8da7.zip
core/Makefile: remove test suite
It's useless Signed-off-by: Ferass El Hafidi <vitali64pmemail@protonmail.com>
-rw-r--r--core/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/core/Makefile b/core/Makefile
index a223810..73efdce 100644
--- a/core/Makefile
+++ b/core/Makefile
@@ -30,20 +30,3 @@ config:
# Cleaning
clean:
rm -f *.o version.h $(CORE)
-
-# Test Suite
-UTILTOTEST=
-ALLUTILS=admin ar asa at awk basename batch bc bg c99 cal cat cd cflow chgrp chmod chown cksum cmp comm command compress cp crontab csplit ctags cut cxref date dd delta df diff dirname du echo ed env ex expand expr false fc fg file find fold fort77 fuser gencat get getconf getopts grep hash head iconv id ipcrm ipcs jobs join kill lex link ln locale localedef logger logname lp ls m4 mailx make man mesg mkdir mkfifo more mv newgrp nice nl nm nohup od paste patch pathchk pax pr printf prs ps pwd qalter qdel qhold qmove qmsg qrerun qrls qselect qsig qstat qsub read renice rm rmdel rmdir sact sccs sed sleep sort split strings strip stty tabs tail talk tee test time touch tput tr true tsort tty type ulimit umask unalias uname uncompress unexpand unget uniq unlink uucp uudecode uuencode uustat uux val vi wait wc what who write xargs yacc zcat
-
-ifeq ($(UTILTOTEST),)
-testsuite: $(CORE)
- for util in $(ALLUTILS); do [ -e $${util}.c ] || echo "utility $${util} is missing."; done
- # TODO: See if utilities already implemented are fully POSIX-compliant, from the source to the behaviour.
- #for util in $(CORE); do grep $${util} utilities.csv && $$(grep $${util} utilities.csv | awk -F',' '{ print $$3 }') (bin/$${util} $$(grep $${util} utilities.csv | awk -F',' '{ print $$1 }') || echo "ERR Utility $${util} isn't fully POSIX-compliant.") || echo "ERR Utility $${util} isn't in utilities.csv"; done
-else
-testsuite: $(UTILTOTEST)
- #@echo "TEST $(UTILTOTEST)"
- #[ -e $(UTILTOTEST) ] && $$(grep $(UTILTOTEST) utilities.csv | awk -F',' '{ print $$3 }') && bin/$(UTILTOTEST) $$(grep $(UTILTOTEST) utilities.csv | awk -F',' '{ print $$1 $$2 }') || echo "ERR Utility $(UTILTOTEST) isn't fully POSIX-compliant."
- #@echo "Done."
- @echo "not implemented."
-endif