diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-06-20 14:29:58 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-06-20 14:29:58 +0300 |
commit | 86263835b2f9727531d8941733df8e05705354bf (patch) | |
tree | dc28138b234b2456cb384b786839f35715f32a66 /Makefile | |
parent | 3966bcd9601b6871f9e6d08656d517b5e916c77d (diff) |
added tests for an array of pointers
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -6,7 +6,7 @@ CFLAGS := -g -Wall -Wextra -Wpedantic -Werror -Wno-language-extension-token tests: dynarray -dynarray: tests/dynarray.c tests/dynarray_struct.c +dynarray: tests/dynarray.c tests/dynarray_struct.c tests/obscure.c $(CC) $(CFLAGS) -o $@ $< -DTT_CHAR ./dynarray $(CC) $(CFLAGS) -o $@ $< -DTT_SHORT @@ -17,6 +17,8 @@ dynarray: tests/dynarray.c tests/dynarray_struct.c ./dynarray $(CC) $(CFLAGS) -o $@ tests/dynarray_struct.c ./dynarray + $(CC) $(CFLAGS) -o $@ tests/obscure.c + ./dynarray rm $@ |