renamed unit test

only test one function per unit test file.
This commit is contained in:
bjt-user 2024-07-09 08:49:48 +02:00
parent 2442af328b
commit 2c6f4bb357
2 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
CC = gcc CC = gcc
CFLAGS = -Wall -g -O0 CFLAGS = -Wall -g -O0
test_parse_ics: test_parse_ics_file:
$(CC) $(CFLAGS) test_parse_ics.c ../src/parse_ics.c ../src/string_handling.c ../src/list_handling.c ../src/date_time_handling.c ../src/read_until_string.c ../src/read_until_nl.c -o test_parse_ics.out $(CC) $(CFLAGS) test_parse_ics_file.c ../src/parse_ics.c ../src/string_handling.c ../src/list_handling.c ../src/date_time_handling.c ../src/read_until_string.c ../src/read_until_nl.c -o test_parse_ics_file.out
./test_parse_ics.out ./test_parse_ics_file.out
.PHONY:clean .PHONY:clean
clean: clean: