diff options
| author | jvoisin | 2023-04-13 22:46:49 +0200 |
|---|---|---|
| committer | jvoisin | 2023-04-13 23:49:02 +0200 |
| commit | aceef734bdfe4f68e2227fc9ac636aae8235fa12 (patch) | |
| tree | ab149e47157fc9f167d92685b586235d2fb60d3d /tests/Makefile | |
| parent | 476fbfc29fe843cf362a2e203818cbe1a97130bb (diff) | |
Add tests for memmove
Diffstat (limited to 'tests/Makefile')
| -rw-r--r-- | tests/Makefile | 12 |
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 @@ | |||
| 1 | CC=../x86_64-linux-musl-native/bin/gcc | 1 | CC=../x86_64-linux-musl-native/bin/gcc |
| 2 | CFLAGS=-I../include/ -D_FORTIFY_SOURCE=3 -static -O2 | 2 | CFLAGS=-I../include/ -D_FORTIFY_SOURCE=3 -static -O2 |
| 3 | 3 | ||
| 4 | TARGETS=test_memcpy_static_write \ | 4 | TARGETS=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 | ||
