diff options
| author | jvoisin | 2024-04-24 17:09:08 +0200 |
|---|---|---|
| committer | jvoisin | 2024-04-24 17:14:46 +0200 |
| commit | a817e1555a755224cacc1cbdeeaefb6a1de606f0 (patch) | |
| tree | bfe86af6c7e7af91859eb36ec2e02056263f8827 /tests/Makefile | |
| parent | 265fa03fa0c467c9c41d803ebe2a538e758cba20 (diff) | |
Fix some overlap mismatch
This was caught by the following test:
```
int main(void) {
char c[32];
memcpy(c, c + 16, 16);
}
```
Reported-by: q66
Diffstat (limited to 'tests/Makefile')
| -rw-r--r-- | tests/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile index 8faf11a..81a1943 100644 --- a/tests/Makefile +++ b/tests/Makefile | |||
| @@ -42,6 +42,7 @@ RUNTIME_TARGETS= \ | |||
| 42 | test_gethostname_static \ | 42 | test_gethostname_static \ |
| 43 | test_getlogin_r_dynamic \ | 43 | test_getlogin_r_dynamic \ |
| 44 | test_getlogin_r_static \ | 44 | test_getlogin_r_static \ |
| 45 | test_issue57 \ | ||
| 45 | test_mbsrtowcs_dynamic \ | 46 | test_mbsrtowcs_dynamic \ |
| 46 | test_mbsrtowcs_static \ | 47 | test_mbsrtowcs_static \ |
| 47 | test_mbstowcs_dynamic \ | 48 | test_mbstowcs_dynamic \ |
