From 2e08693557019529cf8a4daa7931d3414cbeca51 Mon Sep 17 00:00:00 2001 From: Oskar Date: Sun, 21 Jul 2024 18:26:14 +0200 Subject: New testing scripts to generate files and delete. Also fixed a segfault issue happening if the program fails during fill_lfc, it will call free_lfc, but because we haven set the 'next' node to NULL, we segfault. --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5e49c5d..14f34f9 100644 --- a/Makefile +++ b/Makefile @@ -3,17 +3,26 @@ CFLAGS_TESTBIN=-O0 -Wfatal-errors -Wall -Werror -Wextra -g -fsanitize=address -W CFLAGS=-O3 -flto -march=native -DNDEBUG -fomit-frame-pointer -s -static -std=gnu99 TARGET=tsr TESTTARGET=tsr-TESTING +SP_TESTTARGET=tsr-SP INSTALL_DIRECTORY=/usr/local/bin MAKEFLAGS += SRCS=trashsys.c +SRCS_SP=trashsys_small_paths.c +P_MAX_SIZE="30" all: release clean: rm -f $(TARGET) rm -f test/$(TESTTARGET) + rm -f test/$(SP_TESTTARGET) + rm -f $(SRCS_SP) tests: + cp $(SRCS) $(SRCS_SP) $(CC) $(CFLAGS_TESTBIN) $(SRCS) -o test/$(TESTTARGET) + sed -i "s#PATH_MAX#$(P_MAX_SIZE)#g" $(SRCS_SP) + $(CC) $(CFLAGS_TESTBIN) $(SRCS_SP) -o test/$(SP_TESTTARGET) + rm -f $(SRCS_SP) install: cp $(TARGET) $(INSTALL_DIRECTORY) -- cgit v1.2.3