Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / plugin / diagnostic-test-show-locus-generate-patch.c
blobcfdc20819bed5ee7519282a0be9fc3e0abbe98e2
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdiagnostics-generate-patch" } */
4 /* This is a collection of unittests for diagnostic_show_locus;
5 see the overview in diagnostic_plugin_test_show_locus.c.
7 In particular, note the discussion of why we need a very long line here:
8 01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
9 and that we can't use macros in this file. */
11 /* Unit test for rendering of insertion fixit hints
12 (example taken from PR 62316). */
14 void test_fixit_insert (void)
16 #if 0
17 int a[2][2] = { 0, 1 , 2, 3 }; /* { dg-warning "insertion hints" } */
18 #endif
21 /* Unit test for rendering of "remove" fixit hints. */
23 void test_fixit_remove (void)
25 #if 0
26 int a;; /* { dg-warning "example of a removal hint" } */
27 #endif
30 /* Unit test for rendering of "replace" fixit hints. */
32 void test_fixit_replace (void)
34 #if 0
35 gtk_widget_showall (dlg); /* { dg-warning "example of a replacement hint" } */
36 #endif
39 /* Unit test for rendering of fix-it hints that add new lines. */
41 void test_fixit_insert_newline (void)
43 #if 0
44 switch (op)
46 case 'a':
47 x = a;
48 case 'b': /* { dg-warning "newline insertion" } */
49 x = b;
51 #endif
54 /* Unit test for mutually-exclusive suggestions. */
56 void test_mutually_exclusive_suggestions (void)
58 #if 0
59 original; /* { dg-warning "warning 1" } */
60 /* { dg-warning "warning 2" "" { target *-*-* } .-1 } */
61 /* We should not print the mutually-incompatible fix-it hints within
62 the generated patch; they are not listed in the big expected
63 multiline output below. */
64 #endif
67 /* Unit tests for add_fixit_insert_formatted. */
69 void test_add_fixit_insert_formatted_single_line (void)
74 void test_add_fixit_insert_formatted_multiline (void)
76 if (1)
82 /* Verify the output from -fdiagnostics-generate-patch.
83 We expect a header, containing the filename. This is the absolute path,
84 so we can only capture it via regexps. */
86 /* { dg-regexp "\\-\\-\\- .*" } */
87 /* { dg-regexp "\\+\\+\\+ .*" } */
89 /* Next, we expect the diff itself. */
90 /* { dg-begin-multiline-output "" }
91 @@ -14,7 +14,7 @@
92 void test_fixit_insert (void)
94 #if 0
95 - int a[2][2] = { 0, 1 , 2, 3 };
96 + int a[2][2] = { {0, 1} , 2, 3 };
97 #endif
100 @@ -23,7 +23,7 @@
101 void test_fixit_remove (void)
103 #if 0
104 - int a;;
105 + int a;
106 #endif
109 @@ -32,7 +32,7 @@
110 void test_fixit_replace (void)
112 #if 0
113 - gtk_widget_showall (dlg);
114 + gtk_widget_show_all (dlg);
115 #endif
118 @@ -45,6 +45,7 @@
120 case 'a':
121 x = a;
122 + break;
123 case 'b':
124 x = b;
126 @@ -68,7 +69,7 @@
128 void test_add_fixit_insert_formatted_single_line (void)
130 - {}
131 + {INSERTED-CONTENT}
134 void test_add_fixit_insert_formatted_multiline (void)
135 @@ -76,6 +77,7 @@
136 if (1)
139 + INSERTED-CONTENT
143 { dg-end-multiline-output "" } */