Mercurial > hg > octave-jordi > gnulib-hg
annotate tests/unistr/test-u16-stpncpy.c @ 18052:20a313c1ef00
unistr/uN-strtok-tests: avoid a trivial leak
* tests/unistr/test-u-strtok.h (test_u_strtok): Untabify. Free
input and delim after the multibyte delimiter tests.
author | Daiki Ueno <ueno@gnu.org> |
---|---|
date | Tue, 07 Jul 2015 15:12:52 +0900 |
parents | ab58d4870664 |
children |
rev | line source |
---|---|
12703
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 /* Test of u16_stpncpy() function. |
17848 | 2 Copyright (C) 2010-2015 Free Software Foundation, Inc. |
12703
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 This program is free software: you can redistribute it and/or modify |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
5 it under the terms of the GNU General Public License as published by |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 the Free Software Foundation; either version 3 of the License, or |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 (at your option) any later version. |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
9 This program is distributed in the hope that it will be useful, |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
10 but WITHOUT ANY WARRANTY; without even the implied warranty of |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
12 GNU General Public License for more details. |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
13 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
14 You should have received a copy of the GNU General Public License |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
16 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
17 /* Written by Bruno Haible <bruno@clisp.org>, 2010. */ |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
18 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
19 #include <config.h> |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
20 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
21 #include <stdlib.h> |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
22 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
23 #include "zerosize-ptr.h" |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
24 #include "unistr.h" |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
25 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
26 #include "macros.h" |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
27 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
28 #define UNIT uint16_t |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
29 #define U_STPNCPY u16_stpncpy |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
30 #define MAGIC 0xBADE |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
31 #include "test-stpncpy.h" |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
32 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
33 int |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
34 main () |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
35 { |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
36 /* Simple string. */ |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
37 { /* "Grüß Gott. Здравствуйте! x=(-b±sqrt(b²-4ac))/(2a) 日本語,中文,한글" */ |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
38 static const uint16_t input[] = |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
39 { 'G', 'r', 0x00FC, 0x00DF, ' ', 'G', 'o', 't', 't', '.', ' ', |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
40 0x0417, 0x0434, 0x0440, 0x0430, 0x0432, 0x0441, 0x0442, 0x0432, 0x0443, |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
41 0x0439, 0x0442, 0x0435, '!', ' ', |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
42 'x', '=', '(', '-', 'b', 0x00B1, 's', 'q', 'r', 't', '(', 'b', 0x00B2, |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
43 '-', '4', 'a', 'c', ')', ')', '/', '(', '2', 'a', ')', ' ', ' ', |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
44 0x65E5, 0x672C, 0x8A9E, ',', 0x4E2D, 0x6587, ',', 0xD55C, 0xAE00, 0 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
45 }; |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
46 check (input, SIZEOF (input)); |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
47 } |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
48 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
49 /* String with characters outside the BMP. */ |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
50 { |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
51 static const uint16_t input[] = |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
52 { '-', '(', 0xD835, 0xDD1E, 0x00D7, 0xD835, 0xDD1F, ')', '=', |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
53 0xD835, 0xDD1F, 0x00D7, 0xD835, 0xDD1E, 0 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
54 }; |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
55 check (input, SIZEOF (input)); |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
56 } |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
57 |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
58 return 0; |
3fd4d1ad7c98
Tests for module 'unistr/u16-stpncpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
59 } |