From 49d42d988ff5e7b9b8358e98fad60ad8b665588b Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 10 Jan 2010 23:34:03 +0100 Subject: [PATCH] Tests for module 'unistr/u8-stpcpy'. --- ChangeLog | 5 +++++ modules/unistr/u8-stpcpy-tests | 13 ++++++++++++ tests/unistr/test-stpcpy.h | 47 ++++++++++++++++++++++++++++++++++++++++++ tests/unistr/test-u8-stpcpy.c | 28 +++++++++++++++++++++++++ 4 files changed, 93 insertions(+) create mode 100644 modules/unistr/u8-stpcpy-tests create mode 100644 tests/unistr/test-stpcpy.h create mode 100644 tests/unistr/test-u8-stpcpy.c diff --git a/ChangeLog b/ChangeLog index 172f01888..274cd2611 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2010-01-10 Bruno Haible + Tests for module 'unistr/u8-stpcpy'. + * modules/unistr/u8-stpcpy-tests: New file. + * tests/unistr/test-u8-stpcpy.c: New file. + * tests/unistr/test-stpcpy.h: New file. + Tests for module 'unistr/u32-strcpy'. * modules/unistr/u32-strcpy-tests: New file. * tests/unistr/test-u32-strcpy.c: New file. diff --git a/modules/unistr/u8-stpcpy-tests b/modules/unistr/u8-stpcpy-tests new file mode 100644 index 000000000..89f7c6c83 --- /dev/null +++ b/modules/unistr/u8-stpcpy-tests @@ -0,0 +1,13 @@ +Files: +tests/unistr/test-u8-stpcpy.c +tests/unistr/test-stpcpy.h +tests/macros.h + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-u8-stpcpy +check_PROGRAMS += test-u8-stpcpy +test_u8_stpcpy_SOURCES = unistr/test-u8-stpcpy.c diff --git a/tests/unistr/test-stpcpy.h b/tests/unistr/test-stpcpy.h new file mode 100644 index 000000000..76065dc41 --- /dev/null +++ b/tests/unistr/test-stpcpy.h @@ -0,0 +1,47 @@ +/* Test of uN_stpcpy() functions. + Copyright (C) 2010 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +/* Written by Bruno Haible , 2010. */ + +int +main () +{ + /* Test small copying operations. */ + { + static const UNIT src[] = { 'c', 'l', 'i', 'm', 'a', 't', 'e', 0 }; + size_t n; + + for (n = 1; n <= SIZEOF (src); n++) + { + UNIT dest[1 + SIZEOF (src) + 1] = + { MAGIC, MAGIC, MAGIC, MAGIC, MAGIC, MAGIC, MAGIC, MAGIC, MAGIC, + MAGIC + }; + UNIT *result; + size_t i; + + result = U_STPCPY (dest + 1, src + SIZEOF (src) - n); + ASSERT (result == dest + n); + + ASSERT (dest[0] == MAGIC); + for (i = 0; i < n; i++) + ASSERT (dest[1 + i] == src[SIZEOF (src) - n + i]); + ASSERT (dest[1 + n] == MAGIC); + } + } + + return 0; +} diff --git a/tests/unistr/test-u8-stpcpy.c b/tests/unistr/test-u8-stpcpy.c new file mode 100644 index 000000000..94c047150 --- /dev/null +++ b/tests/unistr/test-u8-stpcpy.c @@ -0,0 +1,28 @@ +/* Test of u8_stpcpy() function. + Copyright (C) 2010 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +/* Written by Bruno Haible , 2010. */ + +#include + +#include "unistr.h" + +#include "macros.h" + +#define UNIT uint8_t +#define U_STPCPY u8_stpcpy +#define MAGIC 0xBA +#include "test-stpcpy.h" -- 2.11.0