aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/cpp/dir-only-1.c
blob: 3c2261683c90cc90f5caa1eb5cb330fbcf161108 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* Copyright 2007 Free Software Foundation, Inc.
   Contributed by Ollie Wild <aaw@google.com>.  */

/* { dg-do preprocess } */
/* { dg-options -fdirectives-only } */

/* Tests scan_translation_unit_directives_only()'s handling of corner cases. */

/* Ignore directives inside block comments...
#error directive inside block comment
*/

// Escaped newline doesn't terminate line comment \
#error directive inside line comment

/* A comment canot start inside a string. */
const char *c1 = "/*";
#define NOT_IN_COMMENT
const char *c2 = "*/";
#ifndef NOT_IN_COMMENT
#error Comment started inside a string literal
#endif

/* Escaped newline handling. */
int i; \
#error ignored escaped newline
  \
  \
#define BOL
#ifndef BOL
#error escaped newline did not preserve beginning of line
#endif

/* Handles \\ properly at the end of a string. */
"string ends in \\"/*
#error Missed string terminator.
*/

/* Handles macro expansion in preprocessing directives. */
#define HEADER "dir-only-1.h"
#include HEADER
#ifndef GOT_HEADER
#error Failed to include header.
#endif

/\
*
#define IN_COMMENT
*/
#ifdef IN_COMMENT
#error Escaped newline breaks block comment initiator.
#endif

/*
*\
/
#define NOT_IN_COMMENT2
/**/
#ifndef NOT_IN_COMMENT2
#error Escaped newline breaks block comment terminator.
#endif

/* Test escaped newline inside character escape sequence. */
"\\
\"/*
#error Missed string terminator
*/

/* Block comments don't mask trailing preprocessing
   directive. */ #define NOT_MASKED
#ifndef NOT_MASKED
#error Comment masks trailing directive.
#endif