File: bug20.c

package info (click to toggle)
glibc 2.36-9%2Bdeb12u10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, bookworm-proposed-updates
  • size: 299,916 kB
  • sloc: ansic: 1,055,590; asm: 324,891; makefile: 15,194; python: 12,603; sh: 10,884; cpp: 5,685; awk: 1,883; perl: 518; yacc: 292; pascal: 182; sed: 39
file content (32 lines) | stat: -rw-r--r-- 848 bytes parent folder | download | duplicates (42)
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
/* BZ #5225 */
#include <stdio.h>
#include <string.h>
#include <wchar.h>

static int
do_test (void)
{
  wchar_t in[] = L"123,abc,321";
  /* This is the critical part for this test.  format must be in
     read-only memory.  */
  static const wchar_t format[50] = L"%d,%[^,],%d";
  int out_d1, out_d2;
  char out_s[50];
  printf ("in='%ls' format='%ls'\n", in, format);
  if (swscanf (in, format, &out_d1, out_s, &out_d2) != 3)
    {
      puts ("swscanf did not return 3");
      return 1;
    }
  printf ("in='%ls' format='%ls'\n", in, format);
  printf ("out_d1=%d out_s='%s' out_d2=%d\n", out_d1, out_s, out_d2);
  if (out_d1 != 123 || strcmp (out_s, "abc") != 0 || out_d2 != 321)
    {
      puts ("swscanf did not return the correct values");
      return 1;
    }
  return 0;
}

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