aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr33919.c
blob: 14ea3746cf63da4aeeca3b274a199a2ed410b182 (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
/* PR preprocessor/pr33919 */
/* { dg-do run } */
/* { dg-options "-I . -include ${srcdir}/gcc.dg/pr33919-0.h" } */

#include "pr33919-1.h"

const char *base_file = __BASE_FILE__;

extern int strcmp (const char *, const char *);
extern void abort (void);

int
main ()
{
  if (!strcmp (pre_inc_base_file, "<command line>"))
    abort ();
  if (strcmp (pre_inc_base_file, __FILE__))
    abort ();
  if (strcmp (base_file, __FILE__))
    abort ();
  if (strcmp (inc_base_file, __FILE__))
    abort ();
  if (strcmp (nested_inc_base_file, __FILE__))
    abort ();
  return 0;
}