diff options
author | Oskar <> | 2024-03-22 13:25:56 +0100 |
---|---|---|
committer | Oskar <> | 2024-03-22 13:25:56 +0100 |
commit | 55ac4ebe3bed9b112fa553abece277b309c76bb9 (patch) | |
tree | ec8c922f7ddf85d1561f3411d7be79c43cd7f02b /test/Makefile | |
parent | 45a12e60a3c13203939626b8c70b76b387a73396 (diff) |
updated test/Makefile for easier testing
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile index 252e0a1..3bdbc68 100644 --- a/test/Makefile +++ b/test/Makefile @@ -7,8 +7,23 @@ all: 7ed-TESTING clean: cd .. && make clean + rm -f vcpm + echo "rm -f vcpm" + rm -f vcimm + echo "rm -f vcpm" + rm -f vpct + echo "rm -f vcpm" echo "Cleaned." smode: echo "CC input.c ---> smode" cd .. && gcc -Wfatal-errors -Wall -Werror -Wextra -g -fsanitize=address input.c i_validation.c -o test/smode + +alltests: + cd .. && make tests + gcc validate_check_p_m.c ../i_validation.c -o vcpm + echo "CC ---> vcpm" + gcc validate_check_imm.c ../i_validation.c -o vcimm + echo "CC ---> vcimm" + gcc validate_plus_continue_tests.c ../i_validation.c -o vpct + echo "CC ---> vpct"
\ No newline at end of file |