binutils-gdb/gdb/testsuite/gdb.python/py-template.cc
Tom de Vries d50fa0bfb4 [gdb/testsuite] Fix timeout in gdb.python/py-template.exp
With test-case gdb.python/py-template.exp, I run into a timeout with target
board readnow.

The problem triggers if package libstdc++6-debuginfo is installed.

Fix this by:
- not running to main
- moving variable foo out of main.

Approved-By: Tom Tromey <tom@tromey.com>
2026-03-24 16:29:17 +01:00

31 lines
888 B
C++

/* This testcase is part of GDB, the GNU debugger.
Copyright 2008-2026 Free Software Foundation, Inc.
This program 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 of the License, or
(at your option) any later version.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */
template <typename T>
struct Foo {
};
#ifndef TYPE
#define TYPE int
#endif
Foo<TYPE> foo;
int main()
{
return 0; // break here
}