~ubuntu-branches/ubuntu/natty/diffutils/natty

« back to all changes in this revision

Viewing changes to gnulib-tests/uniwidth/test-uc_width.c

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2010-05-04 20:38:00 UTC
  • mfrom: (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100504203800-f67xd9rsa9xl9qqj
Tags: 1:3.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- buffer-read-only: t -*- vi: set ro: */
 
2
/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 
3
/* Test of uc_width() function.
 
4
   Copyright (C) 2007-2010 Free Software Foundation, Inc.
 
5
 
 
6
   This program is free software: you can redistribute it and/or modify
 
7
   it under the terms of the GNU General Public License as published by
 
8
   the Free Software Foundation; either version 3 of the License, or
 
9
   (at your option) any later version.
 
10
 
 
11
   This program is distributed in the hope that it will be useful,
 
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
   GNU General Public License for more details.
 
15
 
 
16
   You should have received a copy of the GNU General Public License
 
17
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
18
 
 
19
/* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
 
20
 
 
21
#include <config.h>
 
22
 
 
23
#include "uniwidth.h"
 
24
 
 
25
#include "macros.h"
 
26
 
 
27
int
 
28
main ()
 
29
{
 
30
  ucs4_t uc;
 
31
 
 
32
  /* Test width of ASCII characters.  */
 
33
  for (uc = 0x0020; uc < 0x007F; uc++)
 
34
    ASSERT (uc_width (uc, "ISO-8859-2") == 1);
 
35
 
 
36
  /* Test width of some non-spacing characters.  */
 
37
  ASSERT (uc_width (0x0301, "UTF-8") == 0);
 
38
  ASSERT (uc_width (0x05B0, "UTF-8") == 0);
 
39
 
 
40
  /* Test width of some format control characters.  */
 
41
  ASSERT (uc_width (0x200E, "UTF-8") == 0);
 
42
  ASSERT (uc_width (0x2060, "UTF-8") == 0);
 
43
  ASSERT (uc_width (0xE0001, "UTF-8") == 0);
 
44
  ASSERT (uc_width (0xE0044, "UTF-8") == 0);
 
45
 
 
46
  /* Test width of some zero width characters.  */
 
47
  ASSERT (uc_width (0x200B, "UTF-8") == 0);
 
48
  ASSERT (uc_width (0xFEFF, "UTF-8") == 0);
 
49
 
 
50
  /* Test width of some CJK characters.  */
 
51
  ASSERT (uc_width (0x3000, "UTF-8") == 2);
 
52
  ASSERT (uc_width (0xB250, "UTF-8") == 2);
 
53
  ASSERT (uc_width (0xFF1A, "UTF-8") == 2);
 
54
  ASSERT (uc_width (0x20369, "UTF-8") == 2);
 
55
  ASSERT (uc_width (0x2F876, "UTF-8") == 2);
 
56
 
 
57
  return 0;
 
58
}