* configure.in: Remove special pex-cygwin consideration.
[official-gcc.git] / gcc / fixinc / fixtests.c
blob982fe335613f7f2b4c2bca6f2c96fc86e5d5f735
2 /*
4 Test to see if a particular fix should be applied to a header file.
6 Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
8 = = = = = = = = = = = = = = = = = = = = = = = = =
10 NOTE TO DEVELOPERS
12 The routines you write here must work closely with fixincl.c.
14 Here are the rules:
16 1. Every test procedure name must be suffixed with "_test".
17 These routines will be referenced from inclhack.def, sans the suffix.
19 2. Use the "TEST_FOR_FIX_PROC_HEAD()" macro _with_ the "_test" suffix
20 (I cannot use the ## magic from ANSI C) for defining your entry point.
22 3. Put your test name into the FIX_TEST_TABLE
24 4. Do not write anything to stdout. It may be closed.
26 5. Write to stderr only in the event of a reportable error
27 In such an event, call "exit(1)".
29 = = = = = = = = = = = = = = = = = = = = = = = = =
31 This file is part of GNU CC.
33 GNU CC is free software; you can redistribute it and/or modify
34 it under the terms of the GNU General Public License as published by
35 the Free Software Foundation; either version 2, or (at your option)
36 any later version.
38 GNU CC is distributed in the hope that it will be useful,
39 but WITHOUT ANY WARRANTY; without even the implied warranty of
40 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 GNU General Public License for more details.
43 You should have received a copy of the GNU General Public License
44 along with GNU CC; see the file COPYING. If not, write to
45 the Free Software Foundation, 59 Temple Place - Suite 330,
46 Boston, MA 02111-1307, USA. */
48 #include "fixlib.h"
50 #define _ENV_(v,m,n,t) extern tCC* v;
51 ENV_TABLE
52 #undef _ENV_
54 typedef apply_fix_p_t t_test_proc PARAMS(( tCC* file, tCC* text ));
56 typedef struct {
57 tCC* test_name;
58 t_test_proc* test_proc;
59 } test_entry_t;
61 #define FIX_TEST_TABLE \
62 _FT_( "machine_name", machine_name_test ) \
63 _FT_( "stdc_0_in_system_headers", stdc_0_in_system_headers_test )
65 #define TEST_FOR_FIX_PROC_HEAD( test ) \
66 static apply_fix_p_t test PARAMS(( tCC* file, tCC* text )); \
67 static apply_fix_p_t test ( fname, text ) \
68 tCC* fname ATTRIBUTE_UNUSED; \
69 tCC* text ATTRIBUTE_UNUSED;
72 TEST_FOR_FIX_PROC_HEAD( machine_name_test )
74 #ifndef MN_NAME_PAT
75 return SKIP_FIX;
76 #else
77 regex_t *label_re, *name_re;
78 regmatch_t match[2];
79 tCC *base, *limit;
80 IGNORE_ARG(fname);
82 mn_get_regexps(&label_re, &name_re, "machine_name_test");
84 for (base = text;
85 regexec (label_re, base, 2, match, 0) == 0;
86 base = limit)
88 base += match[0].rm_eo;
89 /* We're looking at an #if or #ifdef. Scan forward for the
90 next non-escaped newline. */
91 limit = base;
94 limit++;
95 limit = strchr (limit, '\n');
96 if (!limit)
97 return SKIP_FIX;
99 while (limit[-1] == '\\');
101 /* If the 'name_pat' matches in between base and limit, we have
102 a bogon. It is not worth the hassle of excluding comments,
103 because comments on #if/#ifdef/#ifndef lines are rare,
104 and strings on such lines are illegal.
106 REG_NOTBOL means 'base' is not at the beginning of a line, which
107 shouldn't matter since the name_re has no ^ anchor, but let's
108 be accurate anyway. */
110 if (regexec (name_re, base, 1, match, REG_NOTBOL))
111 return SKIP_FIX; /* No match in file - no fix needed */
113 /* Match; is it on the line? */
114 if (match[0].rm_eo <= limit - base)
115 return APPLY_FIX; /* Yup */
117 /* Otherwise, keep looking... */
119 return SKIP_FIX;
120 #endif
124 TEST_FOR_FIX_PROC_HEAD( stdc_0_in_system_headers_test )
126 #ifdef STDC_0_IN_SYSTEM_HEADERS
127 return (pz_machine == NULL) ? APPLY_FIX : SKIP_FIX;
128 #else
129 return APPLY_FIX;
130 #endif
134 /* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
136 test for fix selector
138 THIS IS THE ONLY EXPORTED ROUTINE
141 apply_fix_p_t
142 run_test( tname, fname, text )
143 tCC* tname;
144 tCC* fname;
145 tCC* text;
147 #define _FT_(n,p) { n, p },
148 static test_entry_t test_table[] = { FIX_TEST_TABLE { NULL, NULL }};
149 #undef _FT_
150 #define TEST_TABLE_CT (ARRAY_SIZE (test_table)-1)
152 int ct = TEST_TABLE_CT;
153 test_entry_t* pte = test_table;
157 if (strcmp( pte->test_name, tname ) == 0)
158 return (*pte->test_proc)( fname, text );
159 pte++;
160 } while (--ct > 0);
161 fprintf( stderr, "fixincludes error: the `%s' fix test is unknown\n",
162 tname );
163 exit( 3 );