summaryrefslogtreecommitdiff
path: root/tests/unistr/test-cpy-alloc.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2010-01-10 17:15:53 +0100
committerBruno Haible <bruno@clisp.org>2010-01-10 23:13:01 +0100
commit4ae0b4c3e08bea6aee453d0542d6f4e7d5876918 (patch)
tree6a9b7293c96b844980314a32605aa16afb3656cc /tests/unistr/test-cpy-alloc.h
parentf32d38dc403a83acde90028e51d2af155ff154e8 (diff)
downloadgnulib-4ae0b4c3e08bea6aee453d0542d6f4e7d5876918.tar.gz
Tests for module 'unistr/u8-cpy-alloc'.
Diffstat (limited to 'tests/unistr/test-cpy-alloc.h')
-rw-r--r--tests/unistr/test-cpy-alloc.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/unistr/test-cpy-alloc.h b/tests/unistr/test-cpy-alloc.h
new file mode 100644
index 0000000000..795e0b7732
--- /dev/null
+++ b/tests/unistr/test-cpy-alloc.h
@@ -0,0 +1,41 @@
+/* Test of uN_cpy_alloc() 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 <http://www.gnu.org/licenses/>. */
+
+/* Written by Bruno Haible <bruno@clisp.org>, 2010. */
+
+int
+main ()
+{
+ /* Test small copying operations. */
+ {
+ static const UNIT src[] = { 'c', 'l', 'i', 'm', 'a', 't', 'e' };
+ size_t n;
+
+ for (n = 0; n <= SIZEOF (src); n++)
+ {
+ UNIT *result = U_CPY_ALLOC (src, n);
+ size_t i;
+
+ ASSERT (result != NULL);
+ for (i = 0; i < n; i++)
+ ASSERT (result[i] == src[i]);
+
+ free (result);
+ }
+ }
+
+ return 0;
+}