1 /* This testcase is part of GDB, the GNU debugger.
3 Copyright 2008-2017 Free Software Foundation, Inc.
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.
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.
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/>. */
45 /* If -1, don't pass length to gdb.lazy_string(). */
53 struct children_as_list {
69 SSS (int x, const S& r);
73 SSS::SSS (int x, const S& r) : a(x), b(r) { }
87 class Vbase1 : public virtual VirtualTest { };
88 class Vbase2 : public virtual VirtualTest { };
89 class Vbase3 : public virtual VirtualTest { };
91 class Derived : public Vbase1, public Vbase2, public Vbase3
108 Fake (const int name = 0):
126 substruct_test (void)
128 struct outerstruct outer;
133 outer.s.a = 3; /* MI outer breakpoint here */
138 typedef struct string_repr
142 const char *contents;
146 /* This lets us avoid malloc. */
156 typedef struct justchildren nostring_type;
170 typedef struct container zzz_type;
173 make_string (const char *s)
176 result.whybother.contents = s;
181 make_container (const char *s)
185 result.name = make_string (s);
193 add_item (zzz_type *c, int val)
197 c->elements[c->len] = val;
202 set_item(zzz_type *c, int i, int val)
205 c->elements[i] = val;
208 void init_s(struct s *s, int a)
214 void init_ss(struct ss *s, int a, int b)
220 void do_nothing(void)
224 c = 23; /* Another MI breakpoint */
232 struct string_repr string_1 = { { "one" } };
233 struct string_repr string_2 = { { "two" } };
236 eval_func (int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8)
244 struct eval_type_s { int x; } eval1 = { 1 }, eval2 = { 2 }, eval3 = { 3 },
245 eval4 = { 4 }, eval5 = { 5 }, eval6 = { 6 },
246 eval7 = { 7 }, eval8 = { 8 }, eval9 = { 9 };
248 eval1.x++; /* eval-break */
254 zzz_type c = make_container ("bug_14741");
256 set_item(&c, 0, 42); /* breakpoint bug 14741 */
265 struct arraystruct arraystruct;
266 string x = make_string ("this is x");
267 zzz_type c = make_container ("container");
268 zzz_type c2 = make_container ("container2");
269 const struct string_repr cstring = { { "const string" } };
270 /* Clearing by being `static' could invoke an other GDB C++ bug. */
271 struct nullstr nullstr;
272 nostring_type nstype, nstype2;
273 struct memory_error me;
275 struct lazystring estring, estring2, estring3;
276 struct hint_error hint_error;
277 struct children_as_list children_as_list;
279 nstype.elements = narray;
285 init_ss(ssa+0, 3, 4);
286 init_ss(ssa+1, 5, 6);
287 memset (&nullstr, 0, sizeof nullstr);
290 init_s (&arraystruct.x[0], 23);
291 init_s (&arraystruct.x[1], 24);
293 ns.null_str = "embedded\0null\0string";
296 /* Make a "corrupted" string. */
300 estring.lazy_str = "embedded x\201\202\203\204";
303 /* Incomplete UTF-8, but ok Latin-1. */
304 estring2.lazy_str = "embedded x\302";
307 estring3.lazy_str = NULL;
322 init_s(&cpssa[0].s, 12);
324 init_s(&cpssa[1].s, 14);
335 add_item (&c, 23); /* MI breakpoint here */
340 c.elements[0] = 1023;
341 c.elements[0] = 2323;
343 add_item (&c2, 2222);
344 add_item (&c2, 3333);
350 nstype.elements[0] = 7;
351 nstype.elements[1] = 42;
358 bug_14741(); /* break to inspect struct and union */