From 09b5fc1fd8fefe672fa1bb3ef63cb43e0f5f5476 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sun, 17 Sep 2023 15:12:47 +0200 Subject: Add a test for stpcpy --- tests/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile index 7f846c2..b702e2e 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -78,6 +78,7 @@ TARGETS= \ test_stpcpy_overwrite_over \ test_stpcpy_overwrite_under \ test_stpcpy_static_write \ + test_stpcpy_dynamic_write \ test_stpncpy_overwrite_over \ test_stpncpy_overwrite_under \ test_stpncpy_static_write \ @@ -141,7 +142,7 @@ $(TARGETS): %: %.c run: $(TARGETS) $(foreach EXE, $(TARGETS), \ - timeout 1s ./$(EXE) 1 2 3 4 5 6 7 8 9 0 >/dev/null && echo "$(EXE) OK" || echo "$(EXE) FAIL" ; \ + timeout 1s ./$(EXE) 1234567890 2 3 4 5 6 7 8 9 0 >/dev/null && echo "$(EXE) OK" || echo "$(EXE) FAIL"; \ ) clean: -- cgit v1.3