Silence maybe-uninitialized warning in dwarf2read.c
[deliverable/binutils-gdb.git] / gdb / unittests / tui-selftests.c
CommitLineData
517d261d
TT
1/* Self tests for the TUI
2
3 Copyright (C) 2019 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
21#include "gdbsupport/selftest.h"
22#include "tui/tui-winsource.h"
23
de2396d0
TT
24#ifdef TUI
25
517d261d
TT
26namespace selftests {
27namespace tui {
28
29static void
30run_tests ()
31{
32 const char *text = "hello";
33 std::string result = tui_copy_source_line (&text, 0, 0, 50, 0);
34 SELF_CHECK (result == "hello");
35 SELF_CHECK (*text == '\0');
36
37 text = "hello\n";
38 result = tui_copy_source_line (&text, 0, 0, 3, 0);
39 SELF_CHECK (result == "hel");
40 SELF_CHECK (*text == '\0');
41}
42
43} /* namespace tui*/
44} /* namespace selftests */
45
de2396d0
TT
46#endif /* TUI */
47
517d261d
TT
48void
49_initialize_tui_selftest ()
50{
de2396d0 51#ifdef TUI
517d261d 52 selftests::register_test ("tui", selftests::tui::run_tests);
de2396d0 53#endif
517d261d 54}
This page took 0.025425 seconds and 4 git commands to generate.