From a084dfa02d28a9372a7e406c9b101a43308a4937 Mon Sep 17 00:00:00 2001 From: axtloss Date: Mon, 24 Jun 2024 21:50:48 +0200 Subject: Add new function memvcmp and unit tests --- tests/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/Makefile (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 0000000..660a20f --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,10 @@ +.POSIX: + +CC = cc +CFLAGS = -g -fsanitize=address,undefined + +test: FORCE + $(CC) test.c ../src/extlib.c ../src/extstring.c $(CFLAGS) -o test + ./test + +FORCE: ; # PHONY is a non standard extension -- cgit v1.2.3