diff options
author | axtloss <axtlos@getcryst.al> | 2024-06-24 21:50:48 +0200 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-06-24 21:50:48 +0200 |
commit | a084dfa02d28a9372a7e406c9b101a43308a4937 (patch) | |
tree | 620d7fe5f55fa76572f5666465997f397b8bbd2a /tests/Makefile | |
parent | 1d4b6499993050876a453a3f96e2428fdfd42610 (diff) | |
download | extlib-a084dfa02d28a9372a7e406c9b101a43308a4937.tar.gz extlib-a084dfa02d28a9372a7e406c9b101a43308a4937.tar.bz2 |
Add new function memvcmp and unit tests
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
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 |