aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/strify2.c
blob: ddde976feae6b53298ddb7954f20d23cc729b278 (plain)
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
/* Copyright (C) 2000 Free Software Foundation, Inc.  */

/* { dg-do run } */
/* { dg-options "-std=c99 -pedantic-errors" } */

/* Tests a whole bunch of things are correctly stringified.  */

extern int strcmp (const char *, const char *);
extern int puts (const char *);
extern void abort (void);
#define err(str) do { puts(str); abort(); } while (0)

#define str(x) #x
#define xstr(x) str(x)
#define strvar(...) #__VA_ARGS__

int main (int argc, char *argv[])
{
  str (\);			/* { dg-warning "valid string" "str(\)" } */
  str (\\\);			/* { dg-warning "valid string" "str(\\\)" } */

  /* This also serves as a useful test of the value of __INCLUDE_LEVEL.  */
  if (strcmp (xstr (__INCLUDE_LEVEL__), "0"))
    err ("macro expansion");

  if (strcmp(str (__INCLUDE_LEVEL__), "__INCLUDE_LEVEL__"))
    err ("macro name");

  if (strcmp(str ("s\n"), "\"s\\n\""))
    err ("quoted string");

  if (strcmp (str (a € b), "a \200 b"))
    err ("unprintable char");

  if (strcmp (str (	a    b@ c   ), "a b@ c"))
    err ("internal whitespace");

  if (strcmp (str(a \n), "a \n"))
    err ("backslash token");

  if (strcmp (strvar (foo, bar), "foo, bar"))
    err ("variable arguments");

  return 0;
}