summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorjvoisin2023-04-13 22:46:49 +0200
committerjvoisin2023-04-13 23:49:02 +0200
commitaceef734bdfe4f68e2227fc9ac636aae8235fa12 (patch)
treeab149e47157fc9f167d92685b586235d2fb60d3d /tests/Makefile
parent476fbfc29fe843cf362a2e203818cbe1a97130bb (diff)
Add tests for memmove
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/Makefile b/tests/Makefile
index c48d0b0..1f80c32 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,10 +1,14 @@
1CC=../x86_64-linux-musl-native/bin/gcc 1CC=../x86_64-linux-musl-native/bin/gcc
2CFLAGS=-I../include/ -D_FORTIFY_SOURCE=3 -static -O2 2CFLAGS=-I../include/ -D_FORTIFY_SOURCE=3 -static -O2
3 3
4TARGETS=test_memcpy_static_write \ 4TARGETS=test_memcpy_static_write \
5 test_memcpy_dynamic_write \ 5 test_memcpy_dynamic_write \
6 test_memcpy_static_read \ 6 test_memcpy_static_read \
7 test_memcpy_dynamic_read 7 test_memcpy_dynamic_read \
8 test_memmove_static_write \
9 test_memmove_dynamic_write \
10 test_memmove_static_read \
11 test_memmove_dynamic_read
8 12
9.SILENT: 13.SILENT:
10 14