[ree] PR rtl-optimization/78038: Handle global register dataflow definitions in ree
[official-gcc.git] / gcc / selftest-run-tests.c
blobd9d3ea13ab63d4e8c7f45f502bd895f4fa7a7154
1 /* Implementation of selftests.
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 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "selftest.h"
24 #include "tree.h"
25 #include "langhooks.h"
27 /* This function needed to be split out from selftest.c as it references
28 tests from the whole source tree, and so is within
29 OBJS in Makefile.in, whereas selftest.o is within OBJS-libcommon.
30 This allows us to embed tests within files in OBJS-libcommon without
31 introducing a dependency on objects within OBJS. */
33 #if CHECKING_P
35 /* Run all tests, aborting if any fail. */
37 void
38 selftest::run_tests ()
40 long start_time = get_run_time ();
42 /* Run all the tests, in hand-coded order of (approximate) dependencies:
43 run the tests for lowest-level code first. */
45 /* Sanity-check for selftests themselves. */
46 selftest_c_tests ();
48 /* Low-level data structures. */
49 bitmap_c_tests ();
50 et_forest_c_tests ();
51 hash_map_tests_c_tests ();
52 hash_set_tests_c_tests ();
53 vec_c_tests ();
54 pretty_print_c_tests ();
55 wide_int_cc_tests ();
56 ggc_tests_c_tests ();
57 sreal_c_tests ();
58 fibonacci_heap_c_tests ();
59 typed_splay_tree_c_tests ();
61 /* Mid-level data structures. */
62 input_c_tests ();
63 tree_c_tests ();
64 gimple_c_tests ();
65 rtl_tests_c_tests ();
67 /* Higher-level tests, or for components that other selftests don't
68 rely on. */
69 diagnostic_show_locus_c_tests ();
70 diagnostic_c_tests ();
71 edit_context_c_tests ();
72 fold_const_c_tests ();
73 spellcheck_c_tests ();
74 spellcheck_tree_c_tests ();
75 tree_cfg_c_tests ();
77 /* This one relies on most of the above. */
78 function_tests_c_tests ();
80 /* Run any lang-specific selftests. */
81 lang_hooks.run_lang_selftests ();
83 /* Finished running tests. */
84 long finish_time = get_run_time ();
85 long elapsed_time = finish_time - start_time;
87 fprintf (stderr,
88 "-fself-test: %i pass(es) in %ld.%06ld seconds\n",
89 num_passes,
90 elapsed_time / 1000000, elapsed_time % 1000000);
93 #endif /* #if CHECKING_P */