aboutsummaryrefslogtreecommitdiff
path: root/gcc/diagnostics/selftest-context.h
blob: cfba997438989316f48f31e54afc089b1b4aca41 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/* Selftest support for diagnostics.
   Copyright (C) 2016-2025 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */

#ifndef GCC_DIAGNOSTICS_SELFTEST_CONTEXT_H
#define GCC_DIAGNOSTICS_SELFTEST_CONTEXT_H

/* The selftest code should entirely disappear in a production
   configuration, hence we guard all of it with #if CHECKING_P.  */

#if CHECKING_P

namespace diagnostics {
namespace selftest {

/* Convenience subclass of diagnostics::context for testing
   the diagnostic subsystem.  */

class test_context : public context
{
 public:
  test_context ();
  ~test_context ();

  /* Implementation of diagnostics::start_span_fn, hiding the
     real filename (to avoid printing the names of tempfiles).  */
  static void
  start_span_cb (const location_print_policy &,
		 to_text &sink,
		 expanded_location exploc);

  /* Report a diagnostic to this context.  For a selftest, this
     should only be called on a context that uses a non-standard formatter
     that e.g. gathers the results in memory, rather than emits to stderr.  */
  bool
  report (enum kind kind,
	  rich_location &richloc,
	  const metadata *,
	  option_id opt_id,
	  const char * fmt, ...) ATTRIBUTE_GCC_DIAG(6,7);

  const char *test_show_locus (rich_location &richloc);

  /* Setters for the context's source_printing_options
     for use in selftests.  */
  void colorize_source (bool val)
  {
    get_source_printing_options ().colorize_source_p = val;
  }
  void show_labels (bool val)
  {
    get_source_printing_options ().show_labels_p = val;
  }
  void show_line_numbers (bool val)
  {
    get_source_printing_options ().show_line_numbers_p = val;
  }
  void show_ruler (bool val)
  {
    get_source_printing_options ().show_ruler_p = val;
  }
  void show_event_links (bool val)
  {
    get_source_printing_options ().show_event_links_p = val;
  }
  void set_caret_char (unsigned idx, char ch)
  {
    gcc_assert (idx < rich_location::STATICALLY_ALLOCATED_RANGES);
    get_source_printing_options ().caret_chars[idx] = ch;
  }
};

} // namespace selftest
} // namespace diagnostics

#endif /* #if CHECKING_P */

#endif /* GCC_DIAGNOSTICS_SELFTEST_CONTEXT_H */