2016-09-10 Bernd Edlinger <bernd.edlinger@hotmail.de>
[official-gcc.git] / gcc / selftest.h
blob9b6fa952f6bc6635fd24fd1c0d6462da018dc018
1 /* A self-testing framework, for use by -fself-test.
2 Copyright (C) 2015-2016 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef GCC_SELFTEST_H
21 #define GCC_SELFTEST_H
23 /* The selftest code should entirely disappear in a production
24 configuration, hence we guard all of it with #if CHECKING_P. */
26 #if CHECKING_P
28 namespace selftest {
30 /* A struct describing the source-location of a selftest, to make it
31 easier to track down failing tests. */
33 struct location
35 location (const char *file, int line, const char *function)
36 : m_file (file), m_line (line), m_function (function) {}
38 const char *m_file;
39 int m_line;
40 const char *m_function;
43 /* A macro for use in selftests and by the ASSERT_ macros below,
44 constructing a selftest::location for the current source location. */
46 #define SELFTEST_LOCATION \
47 (::selftest::location (__FILE__, __LINE__, __FUNCTION__))
49 /* The entrypoint for running all tests. */
51 extern void run_tests ();
53 /* Record the successful outcome of some aspect of the test. */
55 extern void pass (const location &loc, const char *msg);
57 /* Report the failed outcome of some aspect of the test and abort. */
59 extern void fail (const location &loc, const char *msg)
60 ATTRIBUTE_NORETURN;
62 /* As "fail", but using printf-style formatted output. */
64 extern void fail_formatted (const location &loc, const char *fmt, ...)
65 ATTRIBUTE_PRINTF_2 ATTRIBUTE_NORETURN;
67 /* Implementation detail of ASSERT_STREQ. */
69 extern void assert_streq (const location &loc,
70 const char *desc_expected, const char *desc_actual,
71 const char *val_expected, const char *val_actual);
73 /* Implementation detail of ASSERT_STR_CONTAINS. */
75 extern void assert_str_contains (const location &loc,
76 const char *desc_haystack,
77 const char *desc_needle,
78 const char *val_haystack,
79 const char *val_needle);
81 /* A named temporary file for use in selftests.
82 Usable for writing out files, and as the base class for
83 temp_source_file.
84 The file is unlinked in the destructor. */
86 class named_temp_file
88 public:
89 named_temp_file (const char *suffix);
90 ~named_temp_file ();
91 const char *get_filename () const { return m_filename; }
93 private:
94 char *m_filename;
97 /* A class for writing out a temporary sourcefile for use in selftests
98 of input handling. */
100 class temp_source_file : public named_temp_file
102 public:
103 temp_source_file (const location &loc, const char *suffix,
104 const char *content);
107 /* Various selftests involving location-handling require constructing a
108 line table and one or more line maps within it.
110 For maximum test coverage we want to run these tests with a variety
111 of situations:
112 - line_table->default_range_bits: some frontends use a non-zero value
113 and others use zero
114 - the fallback modes within line-map.c: there are various threshold
115 values for source_location/location_t beyond line-map.c changes
116 behavior (disabling of the range-packing optimization, disabling
117 of column-tracking). We can exercise these by starting the line_table
118 at interesting values at or near these thresholds.
120 The following struct describes a particular case within our test
121 matrix. */
123 struct line_table_case;
125 /* A class for overriding the global "line_table" within a selftest,
126 restoring its value afterwards. At most one instance of this
127 class can exist at once, due to the need to keep the old value
128 of line_table as a GC root. */
130 class line_table_test
132 public:
133 /* Default constructor. Override "line_table", using sane defaults
134 for the temporary line_table. */
135 line_table_test ();
137 /* Constructor. Override "line_table", using the case described by C. */
138 line_table_test (const line_table_case &c);
140 /* Destructor. Restore the saved line_table. */
141 ~line_table_test ();
144 /* Run TESTCASE multiple times, once for each case in our test matrix. */
146 extern void
147 for_each_line_table_case (void (*testcase) (const line_table_case &));
149 /* Declarations for specific families of tests (by source file), in
150 alphabetical order. */
151 extern void bitmap_c_tests ();
152 extern void diagnostic_c_tests ();
153 extern void diagnostic_show_locus_c_tests ();
154 extern void edit_context_c_tests ();
155 extern void et_forest_c_tests ();
156 extern void fold_const_c_tests ();
157 extern void fibonacci_heap_c_tests ();
158 extern void function_tests_c_tests ();
159 extern void gimple_c_tests ();
160 extern void ggc_tests_c_tests ();
161 extern void hash_map_tests_c_tests ();
162 extern void hash_set_tests_c_tests ();
163 extern void input_c_tests ();
164 extern void pretty_print_c_tests ();
165 extern void rtl_tests_c_tests ();
166 extern void selftest_c_tests ();
167 extern void spellcheck_c_tests ();
168 extern void spellcheck_tree_c_tests ();
169 extern void sreal_c_tests ();
170 extern void typed_splay_tree_c_tests ();
171 extern void tree_c_tests ();
172 extern void tree_cfg_c_tests ();
173 extern void vec_c_tests ();
174 extern void wide_int_cc_tests ();
176 extern int num_passes;
178 } /* end of namespace selftest. */
180 /* Macros for writing tests. */
182 /* Evaluate EXPR and coerce to bool, calling
183 ::selftest::pass if it is true,
184 ::selftest::fail if it false. */
186 #define ASSERT_TRUE(EXPR) \
187 ASSERT_TRUE_AT (SELFTEST_LOCATION, (EXPR))
189 /* Like ASSERT_TRUE, but treat LOC as the effective location of the
190 selftest. */
192 #define ASSERT_TRUE_AT(LOC, EXPR) \
193 SELFTEST_BEGIN_STMT \
194 const char *desc = "ASSERT_TRUE (" #EXPR ")"; \
195 bool actual = (EXPR); \
196 if (actual) \
197 ::selftest::pass ((LOC), desc); \
198 else \
199 ::selftest::fail ((LOC), desc); \
200 SELFTEST_END_STMT
202 /* Evaluate EXPR and coerce to bool, calling
203 ::selftest::pass if it is false,
204 ::selftest::fail if it true. */
206 #define ASSERT_FALSE(EXPR) \
207 ASSERT_FALSE_AT (SELFTEST_LOCATION, (EXPR))
209 /* Like ASSERT_FALSE, but treat LOC as the effective location of the
210 selftest. */
212 #define ASSERT_FALSE_AT(LOC, EXPR) \
213 SELFTEST_BEGIN_STMT \
214 const char *desc = "ASSERT_FALSE (" #EXPR ")"; \
215 bool actual = (EXPR); \
216 if (actual) \
217 ::selftest::fail ((LOC), desc); \
218 else \
219 ::selftest::pass ((LOC), desc); \
220 SELFTEST_END_STMT
222 /* Evaluate EXPECTED and ACTUAL and compare them with ==, calling
223 ::selftest::pass if they are equal,
224 ::selftest::fail if they are non-equal. */
226 #define ASSERT_EQ(EXPECTED, ACTUAL) \
227 ASSERT_EQ_AT ((SELFTEST_LOCATION), (EXPECTED), (ACTUAL))
229 /* Like ASSERT_EQ, but treat LOC as the effective location of the
230 selftest. */
232 #define ASSERT_EQ_AT(LOC, EXPECTED, ACTUAL) \
233 SELFTEST_BEGIN_STMT \
234 const char *desc = "ASSERT_EQ (" #EXPECTED ", " #ACTUAL ")"; \
235 if ((EXPECTED) == (ACTUAL)) \
236 ::selftest::pass ((LOC), desc); \
237 else \
238 ::selftest::fail ((LOC), desc); \
239 SELFTEST_END_STMT
241 /* Evaluate EXPECTED and ACTUAL and compare them with !=, calling
242 ::selftest::pass if they are non-equal,
243 ::selftest::fail if they are equal. */
245 #define ASSERT_NE(EXPECTED, ACTUAL) \
246 SELFTEST_BEGIN_STMT \
247 const char *desc = "ASSERT_NE (" #EXPECTED ", " #ACTUAL ")"; \
248 if ((EXPECTED) != (ACTUAL)) \
249 ::selftest::pass (SELFTEST_LOCATION, desc); \
250 else \
251 ::selftest::fail (SELFTEST_LOCATION, desc); \
252 SELFTEST_END_STMT
254 /* Evaluate EXPECTED and ACTUAL and compare them with strcmp, calling
255 ::selftest::pass if they are equal,
256 ::selftest::fail if they are non-equal. */
258 #define ASSERT_STREQ(EXPECTED, ACTUAL) \
259 SELFTEST_BEGIN_STMT \
260 ::selftest::assert_streq (SELFTEST_LOCATION, #EXPECTED, #ACTUAL, \
261 (EXPECTED), (ACTUAL)); \
262 SELFTEST_END_STMT
264 /* Like ASSERT_STREQ, but treat LOC as the effective location of the
265 selftest. */
267 #define ASSERT_STREQ_AT(LOC, EXPECTED, ACTUAL) \
268 SELFTEST_BEGIN_STMT \
269 ::selftest::assert_streq ((LOC), #EXPECTED, #ACTUAL, \
270 (EXPECTED), (ACTUAL)); \
271 SELFTEST_END_STMT
273 /* Evaluate HAYSTACK and NEEDLE and use strstr to determine if NEEDLE
274 is within HAYSTACK.
275 ::selftest::pass if NEEDLE is found.
276 ::selftest::fail if it is not found. */
278 #define ASSERT_STR_CONTAINS(HAYSTACK, NEEDLE) \
279 SELFTEST_BEGIN_STMT \
280 ::selftest::assert_str_contains (SELFTEST_LOCATION, #HAYSTACK, #NEEDLE, \
281 (HAYSTACK), (NEEDLE)); \
282 SELFTEST_END_STMT
284 /* Evaluate PRED1 (VAL1), calling ::selftest::pass if it is true,
285 ::selftest::fail if it is false. */
287 #define ASSERT_PRED1(PRED1, VAL1) \
288 SELFTEST_BEGIN_STMT \
289 const char *desc = "ASSERT_PRED1 (" #PRED1 ", " #VAL1 ")"; \
290 bool actual = (PRED1) (VAL1); \
291 if (actual) \
292 ::selftest::pass (SELFTEST_LOCATION, desc); \
293 else \
294 ::selftest::fail (SELFTEST_LOCATION, desc); \
295 SELFTEST_END_STMT
297 #define SELFTEST_BEGIN_STMT do {
298 #define SELFTEST_END_STMT } while (0)
300 #endif /* #if CHECKING_P */
302 #endif /* GCC_SELFTEST_H */