File: tst-iconv7.c

package info (click to toggle)
glibc 2.28-10
  • links: PTS, VCS
  • area: main
  • in suites: buster, buster-backports
  • size: 272,168 kB
  • sloc: ansic: 1,008,602; asm: 259,607; makefile: 11,271; sh: 10,477; python: 6,910; cpp: 4,992; perl: 2,258; awk: 2,005; yacc: 290; pascal: 182; sed: 73
file content (61 lines) | stat: -rw-r--r-- 1,423 bytes parent folder | download | duplicates (45)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <iconv.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

static int
do_test (void)
{
  setlocale (LC_ALL, "de_DE.UTF-8");

  iconv_t cd = iconv_open ("ISO-2022-JP//TRANSLIT", "");
  if (cd == (iconv_t) -1)
    {
      puts ("iconv_open failed");
      return 1;
    }

  char instr1[] = "\xc2\xa3\xe2\x82\xac\n";
  const char expstr1[] = "\033$B!r\033(BEUR\n";
  char outstr[32];
  size_t inlen = sizeof (instr1);
  size_t outlen = sizeof (outstr);
  char *inptr = instr1;
  char *outptr = outstr;
  size_t r = iconv (cd, &inptr, &inlen, &outptr, &outlen);
  if (r != 1
      || inlen != 0
      || outlen != sizeof (outstr) - sizeof (expstr1)
      || memcmp (outstr, expstr1, sizeof (expstr1)) != 0)
    {
      puts ("wrong first conversion");
      return 1;
    }

  char instr2[] = "\xe3\x88\xb1\n";
  const char expstr2[] = "(\033$B3t\033(B)\n";
  inlen = sizeof (instr2);
  outlen = sizeof (outstr);
  inptr = instr2;
  outptr = outstr;
  r = iconv (cd, &inptr, &inlen, &outptr, &outlen);
  if (r != 1
      || inlen != 0
      || outlen != sizeof (outstr) - sizeof (expstr2)
      || memcmp (outstr, expstr2, sizeof (expstr2)) != 0)
    {
      puts ("wrong second conversion");
      return 1;
    }

  if (iconv_close (cd) != 0)
    {
      puts ("iconv_close failed");
      return 1;
    }
  return 0;
}

#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"