diff options
author | Mattias Andrée <maandree@kth.se> | 2018-12-15 14:56:23 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2018-12-15 14:56:23 +0100 |
commit | d1122de6bb461e0448897869b4406300c12f259f (patch) | |
tree | 031bf1bdb887be786e5bb370c83eb52eef649ddc /wmemdup.c | |
parent | A bunch of stuff (diff) | |
download | libsimple-d1122de6bb461e0448897869b4406300c12f259f.tar.gz libsimple-d1122de6bb461e0448897869b4406300c12f259f.tar.bz2 libsimple-d1122de6bb461e0448897869b4406300c12f259f.tar.xz |
More tests and fix attributes on wcsndup
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | wmemdup.c | 23 |
1 files changed, 22 insertions, 1 deletions
@@ -4,7 +4,7 @@ wchar_t * -libsimple_wmemdup(const wchar_t *s, size_t n) /* TODO test */ +libsimple_wmemdup(const wchar_t *s, size_t n) { wchar_t *ret; size_t size; @@ -25,6 +25,27 @@ libsimple_wmemdup(const wchar_t *s, size_t n) /* TODO test */ int main(void) { + struct allocinfo *info; + const wchar_t *s = L"test"; + wchar_t *p; + + p = libsimple_wmemdup(s, 5); + assert(p); + assert(p != s); + assert(!((uintptr_t)s % _Alignof(wchar_t))); + if (have_custom_malloc()) { + assert((info = get_allocinfo(p))); + assert(info->size == 5 * sizeof(wchar_t)); + assert(info->alignment == _Alignof(wchar_t)); + } + assert(!wmemcmp(p, s, 5)); + wmemset(p, 0, 5); + assert(!wmemcmp(s, L"test", 5)); + free(p); + + errno = 0; + assert(!libsimple_wmemdup(NULL, SSIZE_MAX) && errno == ENOMEM); + return 0; } |