[PR/24474] Add gdb.lookup_static_symbol to the python API
[external/binutils.git] / gdb / testsuite / gdb.python / py-symbol.c
1 /* This testcase is part of GDB, the GNU debugger.
2
3    Copyright 2010-2019 Free Software Foundation, Inc.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see  <http://www.gnu.org/licenses/>.  */
17
18 #ifdef __cplusplus
19 class SimpleClass
20 {
21  private:
22   int i;
23
24  public:
25   void seti (int arg)
26   {
27     i = arg;
28   }
29
30   int valueofi (void)
31   {
32     return i; /* Break in class. */
33   }
34 };
35
36 namespace {
37   int anon = 10;
38 };
39 #endif
40
41 int qq = 72;                    /* line of qq */
42 static int rr = 42;             /* line of rr */
43
44 int func (int arg)
45 {
46   int i = 2;
47   i = i * arg; /* Block break here.  */
48   return arg;
49 }
50
51 struct simple_struct
52 {
53   int a;
54 };
55
56 int main (int argc, char *argv[])
57 {
58 #ifdef __cplusplus
59   SimpleClass sclass;
60 #endif
61   int a = 0;
62   int result;
63   struct simple_struct ss = { 10 };
64   enum tag {one, two, three};
65   enum tag t = one;
66
67   result = func (42);
68
69 #ifdef __cplusplus
70   sclass.seti (42);
71   sclass.valueofi ();
72 #endif
73   return 0; /* Break at end.  */
74 }